:root {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color-scheme: light dark;
  color: #213547;
  background-color: #f8f9fa;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
}

.faq-section{
  margin-top: 40px;
  margin-bottom: 70px;
}

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

.faq-container h1 {
  font-size: 2rem;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 2rem;
  font-weight: 600;
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  cursor: pointer;
  user-select: none;
}

.faq-question h2 {
  font-size: 1.1rem;
  margin: 0;
  color: #333;
}

.icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: #666;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  background-color: #f8f9fa;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1.25rem;
}

.faq-answer p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-container {
    margin: 1rem auto;
  }

  h1 {
    font-size: 2rem;
  }

  .faq-question h2 {
    font-size: 1rem;
  }

  .faq-question,
  .faq-item.active .faq-answer {
    padding: 1rem;
  }
}


/* FAQ Section Styles (existing code remains unchanged) */
/* ... existing FAQ styles ... */

/* Slide-In-Right Animation for FAQ Items */
.faq-item.slide-in-right {
  opacity: 0;
  transform: translateX(-100px);
  transition: transform 0.7s ease, opacity 0.7s ease;
}

.faq-item.slide-in-right.animate--visible {
  opacity: 1;
  transform: translateX(0);
}

