.faq-section {
  background-color: #FFFFFF;
  padding: 100px 20px 0 20px;
  font-family: 'Outfit', sans-serif;
  color: #1b1b1f;
}

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

.faq-heading {
  font-size: 48px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 80px;
  letter-spacing: -0.02em;
  color: #1b1b1f;
}

.faq-item {
  border-bottom: 1px solid #E5E5E5;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #1b1b1f;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #0050FF;
}

.faq-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-left: 20px;
  transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: #1b1b1f;
  transition: background-color 0.2s ease;
}

.faq-icon::before {
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px;
}

.faq-icon::after {
  top: 0;
  left: 6px;
  width: 2px;
  height: 14px;
  transition: transform 0.3s ease, background-color 0.2s ease;
}

.faq-question:hover .faq-icon::before,
.faq-question:hover .faq-icon::after {
  background-color: #0050FF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1), padding 0.55s ease;
  padding: 0 0;
}

.faq-answer p {
  margin: 24px 0 40px 0;
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
  font-weight: 300;
}

.faq-item.is-open .faq-answer {
  max-height: 200px;
}

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

.faq-item.is-open .faq-icon::after {
  transform: rotate(90px);
}

@media (max-width: 768px) {
  .faq-heading {
    font-size: 36px;
    margin-bottom: 40px;
  }
  .faq-question {
    font-size: 16px;
    padding: 20px 0;
  }
  .faq-section {
    padding: 60px 40px 0 40px;
  }
}