/* FAQ Section Styles */
.faq-section {
  padding: 80px 0;
  background-color: #fff;
  min-height: 60vh;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin: 20px 0;
  padding: 24px 60px 24px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-color: var(--untitled-ui--primary700);
}

.faq.active {
  background-color: #fff;
  border-color: var(--untitled-ui--primary700);
  box-shadow: 0 4px 12px rgba(105, 65, 198, 0.15);
}

.faq-title {
  margin: 0;
  padding-right: 40px;
  font-family: Satoshi, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #121212;
  cursor: pointer;
}

.faq-text {
  display: none;
  margin: 20px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--systemflow-lite--neutral--80);
}

.faq.active .faq-text {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-toggle {
  background-color: transparent;
  border: 2px solid var(--untitled-ui--primary700);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  position: absolute;
  top: 24px;
  right: 24px;
  height: 36px;
  width: 36px;
  padding: 0;
  transition: all 0.3s ease;
  color: var(--untitled-ui--primary700);
}

.faq-toggle:hover {
  background-color: var(--untitled-ui--primary700);
  color: #fff;
  transform: scale(1.1);
}

.faq.active .faq-toggle {
  background-color: var(--untitled-ui--primary700);
  color: #fff;
  transform: rotate(180deg);
}

.faq-icon {
  display: inline-block;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.faq-chevron {
  opacity: 1;
}

.faq-close {
  opacity: 0;
  position: absolute;
}

.faq.active .faq-chevron {
  opacity: 0;
}

.faq.active .faq-close {
  opacity: 1;
}

/* Responsive Styles */
@media screen and (max-width: 767px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-container {
    padding: 0 16px;
  }

  .faq {
    padding: 20px 50px 20px 20px;
    margin: 16px 0;
  }

  .faq-title {
    font-size: 16px;
    padding-right: 30px;
  }

  .faq-text {
    font-size: 14px;
  }

  .faq-toggle {
    height: 32px;
    width: 32px;
    font-size: 18px;
    top: 20px;
    right: 20px;
  }
}

@media screen and (max-width: 479px) {
  .faq {
    padding: 18px 45px 18px 18px;
  }

  .faq-title {
    font-size: 15px;
  }

  .faq-toggle {
    height: 28px;
    width: 28px;
    font-size: 16px;
  }
}

