.faq-section {
  padding: 0px 0;
}

.faq-container {
  max-width: 1300px; /* same as Accreditations section */
  margin: 0 auto;
  padding: 0 24px;
}

.faq-title {
  font-size: 72px;
  font-weight: 600;
  margin-bottom: 40px;
}

/* FAQ item */
.faq-item {
  border-bottom: 1px solid #999;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 33px;
  font-weight: 500;
  text-align: left;
}

.faq-question span:first-child {
  max-width: 90%;
}

/* Arrow */
.faq-icon {
  width: 22px;
  height: 22px;
  border: 1px solid #888;
  border-radius: 50%;
  position: relative;
  transition: transform 0.3s ease;
}




/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  color: #61a60d;
  font-size: 23px;
  line-height: 1.6;
  padding: 0 0 20px 0;
}

/* Active */
.faq-item.active .faq-answer {
  max-height: 200px;
  
}

.faq-item.active .faq-icon {
  transform: rotate(270deg);
}

.faq-item.active .faq-icon::after {
  display: none;
  
}

/* Mobile */
@media (max-width: 768px) {
  .faq-title {
    font-size: 36px;
  }

  .faq-question {
    font-size: 16px;
  }
}
/* Icon container */
.faq-icon {
  position: relative;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* Default (closed) icon */
.faq-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/closed-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
}

/* Open state icon */
.faq-item.open .faq-icon::before {
  background-image: url("images/open-icon.png");
}

/* Question row */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 33px;
  font-weight: 500;
  text-align: left;
}

/* Smooth accordion */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  opacity: 1;
}

/* Mobile */
@media (max-width: 768px) {
  .faq-icon {
    width: 26px;
    height: 26px;
  }

  .faq-question {
    font-size: 16px;
  }
}
