/* Contact page styles */
 .contact-form {
      padding: 0 20px;
      border-radius: 3px;
      background-color: #FFF;
    }
    .form-label {
      font-weight: 500;
      color: #333;
      margin-bottom: 5px;
    }
    .form-control, .form-select {
      border: 1px solid #d1d5db;
      border-radius: 3px;
      box-shadow: none;
      padding: 10px;
      font-size: 16px;
    }
    .form-control:focus, .form-select:focus {
      border-color: #4b5563;
      box-shadow: none;
      outline: none;
    }
    .btn-primary {
      background-color: #1e40af;
      border: none;
      border-radius: 3px;
      padding: 12px 24px;
      font-size: 16px;
      font-weight: 500;
    }
    .btn-primary:hover {
      background-color: #1e3a8a;
    }
    .form-control::placeholder, .form-select option:disabled {
      color: #9ca3af;
    }
    h2 {
      font-size: 24px;
      color: #1f2937;
      font-weight: 600;
    }
    p.text-muted {
      color: #6b7280;
      font-size: 16px;
    }