    /* Contact Page Specific Styles */
    .contact-banner {
      background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 50%, #4c1d95 100%);
      color: #ffffff;
      padding: 5rem 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .contact-banner::before {
      content: "";
      position: absolute;
      top: -30%;
      right: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(167, 139, 250, 0.2) 0%, transparent 70%);
      border-radius: 50%;
    }
    .contact-banner::after {
      content: "";
      position: absolute;
      bottom: -20%;
      left: -5%;
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, rgba(196, 181, 253, 0.12) 0%, transparent 70%);
      border-radius: 50%;
    }
    .contact-banner h1 {
      font-weight: 800;
      font-size: 2.75rem;
      margin-bottom: 0.75rem;
      position: relative;
      z-index: 1;
    }
    .contact-banner p {
      color: #ddd6fe;
      font-size: 1.1rem;
      max-width: 500px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
    .contact-form-card {
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 16px;
      padding: 2.5rem;
      box-shadow: 0 4px 24px rgba(0,0,0,0.04);
      transition: box-shadow 0.3s ease;
    }
    .contact-form-card:hover {
      box-shadow: 0 8px 40px rgba(124, 58, 237, 0.08);
    }
    .contact-form-card .form-label {
      font-weight: 600;
      font-size: 0.85rem;
      color: #374151;
      margin-bottom: 0.4rem;
    }
    .contact-form-card .form-control {
      border: 1.5px solid #e5e7eb;
      border-radius: 12px;
      padding: 0.85rem 1rem;
      font-size: 0.95rem;
      transition: all 0.3s ease;
      background: #fafafa;
    }
    .contact-form-card .form-control:focus {
      border-color: #7c3aed;
      box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
      background: #fff;
    }
    .contact-form-card textarea.form-control {
      resize: vertical;
      min-height: 140px;
    }
    .contact-submit-btn {
      background: linear-gradient(135deg, #7c3aed, #6d28d9);
      color: #fff;
      border: none;
      padding: 0.95rem 2.5rem;
      border-radius: 12px;
      font-weight: 700;
      font-size: 0.95rem;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      width: 100%;
      justify-content: center;
    }
    .contact-submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
    }
    .faq-item {
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 0.75rem;
      background: #fff;
      transition: box-shadow 0.3s ease;
    }
    .faq-item:hover {
      box-shadow: 0 4px 16px rgba(124, 58, 237, 0.06);
    }
    .faq-button {
      width: 100%;
      text-align: left;
      padding: 1.1rem 1.25rem;
      background: #fff;
      border: none;
      font-weight: 600;
      font-size: 0.9rem;
      color: #111827;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.25s ease;
    }
    .faq-button:hover {
      background: #fafafa;
      color: #7c3aed;
    }
    .faq-button:focus {
      box-shadow: none;
      outline: none;
    }
    .faq-button i {
      transition: transform 0.3s ease;
      color: #9ca3af;
      font-size: 0.8rem;
    }
    .faq-button:not(.collapsed) i {
      transform: rotate(180deg);
      color: #7c3aed;
    }
    .faq-button:not(.collapsed) {
      background: #fafafa;
      color: #7c3aed;
    }
    .faq-body {
      padding: 0 1.25rem 1.25rem;
      font-size: 0.9rem;
      color: #6b7280;
      line-height: 1.65;
    }
