/* FAQ Section Styles */
.faq-section {
  padding: 64px 40px;
  background: white;
  overflow: hidden;
}

.faq-container {
  max-width: 1307px;
  margin: 0 auto;
}

.faq-section .section-title {
  text-align: left;
  margin-bottom: 40px;
  font-family: 'Manrope', sans-serif;
  font-size: 71px;
  font-weight: 800;
  color: #111113;
  line-height: 85px;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}

.faq-section .section-title .title-line {
  display: block;
  line-height: 85px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  background: #edeff7;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.faq-question {
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: transparent;
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: #111113;
  transition: all 0.3s ease;
  font-style: normal;
}

.faq-question:hover {
  background: transparent;
}

.faq-icon {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: #111113;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
  flex-shrink: 0;
  margin-left: clamp(0.75rem, 1.5vw, 1rem);
  will-change: transform;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  will-change: max-height;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 clamp(1.25rem, 2.5vw, 1.75rem) clamp(1rem, 2vw, 1.5rem)
    clamp(1.25rem, 2.5vw, 1.75rem);
}

.faq-answer p {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  line-height: 32px;
  color: #111113;
  font-weight: 400;
  font-size: 18px;
  font-style: normal;
}

/* Tablet Styles */
@media (max-width: 768px) {
  .faq-section {
    padding: 32px 20px;
  }

  .faq-section .section-title {
    font-size: 64px;
    line-height: 78px;
  }

  .faq-section .section-title {
    margin-bottom: 32px;
  }

  .faq-question {
    font-size: 16px;
    line-height: 24px;
  }

  .faq-answer p {
    font-size: 16px;
    line-height: 24px;
  }
}

/* Mobile Styles */
@media (max-width: 480px) {
  .faq-section {
    padding: 32px 20px;
  }

  .faq-section .section-title {
    font-size: 48px;
    line-height: 58px;
    margin-bottom: 24px;
  }

  .faq-question {
    font-size: 16px;
    line-height: 24px;
  }

  .faq-answer p {
    font-size: 14px;
    line-height: 20px;
  }
}
