/* Base Styles */
    body {
      transition: background-color 0.3s ease, color 0.3s ease;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    }

/* FAQ Section */
    .faq-section {
      padding: 4rem 0;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      max-width: 1280px;
      margin: 0 auto;
    }

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

/* Section Header */
    .section-title {
      font-size: 2.25rem;
      font-weight: 700;
      color: #111827;
      text-align: center;
      margin-bottom: 0.5rem;
    }

.bg-primary {
      background-color: #00c35e;
      width: 6rem;
      height: 0.25rem;
      margin: 0 auto;
    }

.section-subtitle {
      font-size: 1rem;
      color: #6b7280;
      text-align: center;
      margin: 1.5rem auto 3.5rem;
      max-width: 42rem;
    }

/* FAQ Accordion */
    .faq-accordion {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

.faq-item {
      background: white;
      border-radius: 0.5rem;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }

.faq-item:hover {
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }

.faq-question {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.25rem 1.5rem;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      font-size: 1rem;
      font-weight: 600;
      color: #111827;
    }

.faq-question span {
      margin-right: 1rem;
    }

.faq-icon {
      width: 1.5rem;
      height: 1.5rem;
      flex-shrink: 0;
      color: #00c35e;
      transition: transform 0.2s ease;
    }

.faq-question[aria-expanded="true"] .faq-icon {
      transform: rotate(180deg);
    }

.faq-answer {
      padding: 0 1.5rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }

.faq-item.active .faq-answer {
      padding: 0 1.5rem 1.5rem;
      max-height: 300px !important
    }

.faq-answer p {
      color: #4b5563;
      line-height: 1.6;
    }

/* CTA Section */
    .faq-cta {
      margin-top: 3rem;
      text-align: center;
    }

.faq-cta h3 {
      color: #1f2937;
      margin-bottom: 0.5rem;
      font-size: 1.5rem;
      font-weight: 600;
    }

.faq-cta p {
      color: #4b5563;
      margin-bottom: 1.5rem;
    }

.cta-button {
      display: inline-block;
      padding: 0.75rem 1.5rem;
      background-color: #22c55e;
      color: white;
      border-radius: 0.375rem;
      font-weight: 500;
      text-decoration: none;
      transition: background-color 0.2s ease;
    }

.cta-button:hover {
      background-color: #16a34a;
    }

/* Dark Mode */
    body.dark {
      background-color: #1a202c;
      color: #f3f4f6;
    }

body.dark .section-title {
      color: #f3f4f6;
    }

body.dark .section-subtitle {
      color: #d1d5db;
    }

body.dark .faq-item {
      background-color: #2d3748;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }

body.dark .faq-item:hover {
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    }

body.dark .faq-question {
      color: #f3f4f6;
    }

body.dark .faq-answer p {
      color: #d1d5db;
    }

body.dark .faq-cta h3 {
      color: #f3f4f6;
    }

body.dark .faq-cta p {
      color: #d1d5db;
    }

/* Responsive */
    @media (max-width: 768px) {
      .section-title {
        font-size: 1.5rem;
      }
      
      .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.9375rem;
      }
    }
