    /* SweetAlert customization */
    .swal2-popup {
        font-family: inherit;
        border-radius: 8px;
    }

    .swal2-title {
        font-size: 1.5rem;
        font-weight: 600;
    }

    .swal2-confirm.swal-confirm-btn {
        background-color: #4f46e5;
        padding: 0.5rem 1.5rem;
        border-radius: 6px;
        font-weight: 500;
    }

.swal2-confirm.swal-confirm-btn:hover {
    background-color: #4338ca;
}
    .contact-form {
      width: 800px;
      /* margin: 40px auto; */
      padding: 30px 40px;
      border: 3px solid #0b4c9c;
      border-radius: 8px;
      font-family: Arial, sans-serif;
      box-shadow: 0 0 8px rgba(0,0,0,0.05);
    }

    .contact-form h6 {
      margin-top: 20px;
      color: #888;
      display: block;
      margin-bottom: 0;
    }

    .contact-form h2 {
      color: #003399;
      font-size: 28px;
      font-weight: 700;
    }

    .contact-form label {
      color: #000;
      display: block;
      margin-top: 20px;
      font-weight: bold;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 12px;
      margin-top: 5px;
      border: 1px solid #ccc;
      border-radius: 5px;
      box-sizing: border-box;
      font-size: 14px;
    }

    .contact-form textarea {
      height: 100px;
      resize: vertical;
    }

    .contact-form .input-group {
      display: flex;
      gap: 20px;
    }

    .contact-form .input-group > div {
      flex: 1;
    }

    .contact-form .hint {
      font-size: 12px;
      color: #888;
      margin-top: 5px;
    }

    .contact-form button {
      background-color: #003399;
      color: white;
      padding: 12px 24px;
      border: none;
      border-radius: 5px;
      margin-top: 25px;
      font-size: 16px;
      cursor: pointer;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
      transition: background-color 0.3s ease;
    }

    .contact-form button:hover {
      background-color: #002080;
    }

    .contact-form .required {
      color: red;
    }