.contact-banner {
    padding: 80px 0 60px;
}

.contact-form-section {
    background: var(--bg-white);
    padding: 44px 0 64px;
    font-size: 15px;
}

.contact-form-section h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.contact-form {
    max-width: 980px;
}

/* Match top menu bar: .nav-menu > li > a uses 15px / 500 */
.contact-form .field label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.contact-form .field label span {
    color: #c53030;
}

.name-field-group {
    margin-bottom: 16px;
}

.name-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: start;
}

.name-col {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.name-col input {
    width: 100%;
}

.name-col small {
    text-align: left;
    margin-top: 4px;
}

.field {
    margin-bottom: 16px;
}

.field.full {
    width: 100%;
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid #d5dbe3;
    border-radius: 0;
    padding: 10px 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    font-family: inherit;
}

.field textarea {
    resize: vertical;
    min-height: 180px;
}

.field small {
    display: block;
    margin-top: 4px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-medium);
}

.submit-btn {
    margin-top: 8px;
    padding: 12px 20px;
    background: #ececec;
    border: 1px solid #d1d5db;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    border-radius: 6px;
}

.submit-btn:hover {
    background: #e5e7eb;
}

@media (max-width: 900px) {
    .name-input-row {
        grid-template-columns: 1fr;
    }

    .contact-form-section h2 {
        font-size: 1.35rem;
    }
}
