


  /* Form and button hover effects */
  .form-control:hover {
    background-color: #2124B1 !important;
    color: rgb(245, 249, 254) !important;
  }

  .btn:hover {
    background-color: #2124B1 !important;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  }

  .btn:hover .fa-paper-plane {
    color: rgb(228, 234, 243) !important;
    transform: translateX(2px);
    transition: transform 0.2s ease;
  }

  /* FAQ Section */
  .faq-section {
    padding: 20px 15px;
    max-width: 100%;
    overflow-x: hidden;
  }

  .faq-section h2 {
    font-size: 28px;
    font-weight: bold;
    color: #212529;
  }

  /* Accordion Styling */
  .accordion-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px !important;
    overflow: hidden;
  }

  .accordion-button {
    background-color: #2124B1 !important;
    color: #fff !important;
    font-size: 16px;
    padding: 12px 15px;
    line-height: 1.5;
    overflow-wrap: break-word;
    transition: background-color 0.3s ease;
  }

  .accordion-button:not(.collapsed) {
    background-color: #1a1e8c !important;
    color: #fff !important;
  }

  .accordion-button:focus {
    box-shadow: none;
    outline: none;
  }

  .accordion-body {
    font-size: 14px;
    padding: 15px;
    background-color: #f8f9fa;
    color: #212529;
    overflow-wrap: break-word;
  }

  /* Email Subscription Form */
  .faq-section .form-control {
    background-color: #f8f9fa;
    color: #212529;
    border: 1px solid #ced4da;
    transition: background-color 0.3s, color 0.3s;
  }

  .faq-section .form-control:focus {
    border-color: #2124B1;
    box-shadow: 0 0 5px rgba(33, 36, 177, 0.3);
  }

  .faq-section .btn-primary {
    background-color: #2124B1;
    border: none;
    transition: all 0.3s ease;
  }

  .faq-section .btn-primary:hover {
    background-color: #1a1e8c;
  }

  /* Mobile-specific adjustments (768px and below) */
  @media (max-width: 768px) {
    .faq-section {
      padding: 15px 10px;
    }

    .faq-section .row {
      flex-direction: column;
      gap: 20px;
    }

    .faq-section .col-md-6 {
      width: 100%;
      padding: 0 5px;
    }

    .faq-section h2 {
      font-size: 24px;
    }

    .faq-section h3 {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .faq-section p {
      font-size: 13px;
    }

    .accordion-button {
      font-size: 14px;
      padding: 10px 12px;
    }

    .accordion-body {
      font-size: 13px;
      padding: 12px;
    }

    .faq-section .form-control {
      height: 42px;
      font-size: 13px;
      padding: 0 50px 0 15px;
    }

    .faq-section .btn-primary {
      height: 34px;
      width: 34px;
      top: 4px;
      margin-right: 4px;
    }
  }

  /* Extra small screens (below 576px) */
  @media (max-width: 576px) {
    .faq-section {
      padding: 10px 5px;
    }

    .faq-section h2 {
      font-size: 22px;
    }

    .faq-section h3 {
      font-size: 16px;
    }

    .faq-section p {
      font-size: 12px;
    }

    .accordion-button {
      font-size: 13px;
      padding: 8px 10px;
    }

    .accordion-body {
      font-size: 12px;
      padding: 10px;
    }

    .faq-section .form-control {
      height: 38px;
      font-size: 12px;
      padding: 0 45px 0 10px;
    }

    .faq-section .btn-primary {
      height: 30px;
      width: 30px;
      top: 4px;
      margin-right: 3px;
    }

    .faq-section .fa-paper-plane {
      font-size: 14px;
    }
  }

  /* Very small screens (below 400px) */
  @media (max-width: 400px) {
    .faq-section {
      padding: 8px 3px;
    }

    .faq-section h2 {
      font-size: 20px;
    }

    .faq-section h3 {
      font-size: 15px;
    }

    .faq-section p {
      font-size: 11px;
    }

    .accordion-button {
      font-size: 12px;
      padding: 6px 8px;
    }

    .accordion-body {
      font-size: 11px;
      padding: 8px;
    }

    .faq-section .form-control {
      height: 36px;
      font-size: 11px;
      padding: 0 40px 0 8px;
    }

    .faq-section .btn-primary {
      height: 28px;
      width: 28px;
      top: 4px;
      margin-right: 2px;
    }

    .faq-section .fa-paper-plane {
      font-size: 13px;
    }
  }
