.elementor-2174 .elementor-element.elementor-element-63bebe4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-39141f9 */#faq {
  max-width: 800px;
  margin: 50px auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#faq h1 {
  text-align: center;
  margin-bottom: 35px;
  font-size: 28px;
  font-weight: 700;
  color: #1a73e8;
  position: relative;
}

#faq h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #1a73e8;
  margin: 10px auto 0;
  border-radius: 2px;
}

.faq-item {
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.06);
  overflow: hidden;
  background: #fff;
  transition: transform 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
}

.faq-question {
  display: block;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 600;
  background: #ffffff;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
  color: #333;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 22px;
  font-weight: bold;
  transition: transform 0.3s;
  color: #1a73e8;
}

.faq-item input:checked + .faq-question::after {
  transform: rotate(45deg);
}

.faq-question:hover {
  background: #f7faff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0 22px;
  background: #f9f9f9;
  font-size: 15px;
  color: #444;
}

.faq-item input:checked ~ .faq-answer {
  max-height: 1000px;
  padding: 16px 22px 20px;
}

.faq-answer p, 
.faq-answer ul {
  margin: 0;
  line-height: 1.7;
}

.faq-answer ul {
  padding-left: 20px;
}

.faq-answer ul li {
  margin: 6px 0;
}/* End custom CSS */