/* PAGE HEADER */
.contact-title {
    font-size: 30px;
    text-align: center;
    color: #005bac;
    display: inline-flex;
    gap: 12px;
    background: linear-gradient(to bottom, #ffffff, #e6e6e6);
    border: 2px solid #cfcfcf;
    border-radius: 20px;
    padding: 5px 22px;
    font-weight: bold;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    font-family: Arial, sans-serif;
}

.contact-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: #444;
}

/* FORM */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
    color: #003f7d;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cfd9e6;
    border-radius: 8px;
    font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #005bac;
    outline: none;
}

/* BUTTON */
.btn-submit {
    width: 100%;
    padding: 14px;
    background: #005bac;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
}

.btn-submit:hover {
    background: #003f7d;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .contact-title {
        font-size: 28px;
    }

    .contact-form {
        padding: 20px;
    }
}