.contact-section {
    padding: 4rem 0;
    background-color: #f7f9fb;
}

/* GRID LAYOUT */

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

/* LEFT COLUMN */

.contact-info h2 {
    font-size: 2.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.2rem;
}

.contact-scope {
    margin: 1.5rem 0;
    padding-left: 1.2rem;
}

.contact-scope li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    color: #444;
}

.contact-disclaimer {
    font-size: 0.9rem;
    color: #666;
    margin-top: 2rem;
}

/* RIGHT COLUMN (FORM CARD) */

.contact-form-card {
    background: #ffffff;
    padding: 2.8rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.06),
        0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* FORM ELEMENTS */

.form-group {
    margin-bottom: 1.4rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.65rem 0.75rem;
    font-size: 0.95rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-group textarea {
    min-height: 160px;
    resize: vertical;
    line-height: 1.5;
}

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

/* BUTTON */

.btn-primary {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    background-color: #003b4f;
    border-color: #003b4f;
}

.btn-primary:hover {
    background-color: #002c3a;
}

/* SMALL NOTE */

.small-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 1rem;
    text-align: center;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}