.elementor-255 .elementor-element.elementor-element-576f3b1{--display:flex;}.elementor-255 .elementor-element.elementor-element-78525e3{--spacer-size:50px;}/* Start custom CSS for html, class: .elementor-element-82ffe0f */.faq-page {
  font-family: 'Poppins', sans-serif;
  background: #f9fafb;
  color: #333;
}

/* HERO */
.faq-hero {
  text-align: center;
  background: linear-gradient(135deg, #00695c, #004d40);
  color: #fff;
  padding: 80px 20px;
}

.faq-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.faq-subtitle {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* CONTAINER */
.faq-container {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.faq-container h2 {
  color: #004d40;
  font-size: 1.7rem;
  margin: 40px 0 20px;
  text-align: center;
}

/* FAQ ITEM */
.faq-item {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-item input {
  display: none;
}

.faq-question {
  display: block;
  padding: 18px 25px;
  font-weight: 600;
  color: #004d40;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item input:checked + .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-item input:checked + .faq-question {
  background: #004d40;
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: #f0fdf4;
  padding: 0 25px;
}

.faq-item input:checked ~ .faq-answer {
  max-height: 200px;
  padding: 20px 25px;
}

.faq-answer p {
  margin: 0;
  color: #333;
  line-height: 1.7;
}

.faq-answer a {
  color: #00796b;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-hero h1 {
    font-size: 2rem;
  }
  .faq-subtitle {
    font-size: 1rem;
  }
  .faq-question {
    font-size: 1rem;
  }
}/* End custom CSS */