 .faq-hero {
    background: white;
    color: #333;
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid #e1e5e9;
  }

  .faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 20px;
  }

  .faq-intro {
    text-align: center;
    margin-bottom: 3rem;
  }

  .faq-intro h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .faq-intro p {
    color: #666;
    font-size: 1.1rem;
  }

  .faq-section {
    margin-bottom: 4rem;
  }

  .faq-item {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e5e9;
  }

  .faq-question {
    background: #f8f9fa;
    color: #333;
    padding: 1.5rem 2rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    border-bottom: 1px solid #e1e5e9;
  }

  .faq-question:hover {
    background: #e9ecef;
  }

  .faq-question.active {
    background: var(--primary-text-color);
    color: white;
  }

  .faq-icon {
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s;
  }

  .faq-question.active .faq-icon {
    transform: rotate(45deg);
  }

  .faq-answer {
    padding: 2rem;
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    display: none;
    background: white;
  }

  .faq-answer.show {
    display: block;
    animation: slideDown 0.3s ease-out;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .contact-cta {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 3rem;
  }

  .contact-cta h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }

  .contact-cta p {
    color: #666;
    margin-bottom: 2rem;
  }

  .btn-primary,
  .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin: 0 10px;
  }

  .btn-primary {
    background: var(--primary-text-color);
    color: white;
  }

  .btn-primary:hover {
    background: #764ba2;
  }

  .btn-secondary {
    background: transparent;
    color: var(--primary-text-color);
    border: 2px solid var(--primary-text-color);
  }

  .btn-secondary:hover {
    background: var(--primary-text-color);
    color: white;
  }