/* FAQ Page Styles */
    .faq-hero {
      background: linear-gradient(135deg, var(--brand-primary) 0%, #1d4ed8 100%);
      padding: 100px 16px 80px;
      text-align: center;
      color: white;
    }

    .faq-hero h1 {
      font-size: 48px;
      font-weight: 700;
      line-height: 56px;
      margin-bottom: 16px;
      color: white;
    }

    .faq-hero p {
      font-size: 20px;
      line-height: 32px;
      max-width: 700px;
      margin: 0 auto;
      opacity: 0.95;
    }

    .faq-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 64px 16px;
    }

    .faq-category {
      padding: 60px 0;
    }

    .faq-category:nth-of-type(odd) {
      background: white;
    }

    .faq-category:nth-of-type(even) {
      background: var(--medical-gray);
    }

    .faq-category h2 {
      font-size: 28px;
      font-weight: 700;
      color: var(--brand-dark);
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 12px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 16px;
    }

    .faq-category h2 i {
      color: var(--brand-accent);
      font-size: 24px;
    }

    .faq-item {
      background: white;
      border-radius: 8px;
      margin-bottom: 16px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
      overflow: hidden;
      transition: all 0.3s ease;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .faq-item:hover {
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .faq-question {
      width: 100%;
      text-align: left;
      padding: 20px 24px;
      background: white;
      border: none;
      font-size: 18px;
      font-weight: 600;
      color: var(--brand-dark);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s ease;
    }

    .faq-question:hover {
      background: var(--brand-light);
    }

    .faq-question .icon {
      font-size: 14px;
      color: var(--brand-primary);
      transition: transform 0.3s ease;
    }

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

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      background: var(--brand-light);
    }

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

    .faq-answer-content {
      padding: 20px 24px;
      font-size: 16px;
      line-height: 28px;
      color: var(--brand-dark);
    }

    .faq-answer-content strong {
      color: var(--brand-dark);
    }

    .faq-answer-content ul {
      margin: 12px 0;
      padding-left: 24px;
    }

    .faq-answer-content li {
      margin-bottom: 8px;
    }

    /* Support Section */
    .support-section {
      background: white;
      padding: 80px 32px;
      text-align: center;
    }

    .support-section h2 {
      font-size: 32px;
      font-weight: 700;
      color: var(--brand-primary);
      margin-bottom: 16px;
    }

    .support-section p {
      font-size: 18px;
      color: var(--brand-dark);
      margin-bottom: 32px;
    }

    .support-options {
      display: flex;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
    }

    .support-btn {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 16px 32px;
      background: white;
      color: var(--brand-primary);
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }

    .support-btn:hover {
      background: var(--medical-blue-light);
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    }

    .support-btn i {
      font-size: 20px;
    }

    /* Learn More Section */
    .learn-more-section {
      background: var(--medical-gray);
      padding: 80px 48px;
      text-align: center;
    }

    .learn-more-section h3 {
      font-size: 24px;
      font-weight: 600;
      color: var(--brand-dark);
      margin-bottom: 16px;
    }

    .learn-more-section p {
      font-size: 16px;
      color: var(--brand-neutral);
      margin-bottom: 24px;
    }

    .learn-more-links {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .learn-more-links a {
      padding: 12px 24px;
      background: #e6f3f3;
      color: var(--brand-primary);
      border-radius: 6px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .learn-more-links a:hover {
      background: #37a3a1;
      color: white;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .faq-hero h1 {
        font-size: 32px;
        line-height: 40px;
      }

      .support-options {
        flex-direction: column;
      }

      .support-btn {
        width: 100%;
        justify-content: center;
      }

      .learn-more-links {
        flex-direction: column;
      }

      .learn-more-links a {
        width: 100%;
      }
    }
