.contact-page {
    padding: 40px 0;
}

.section-header {
    margin-bottom: 24px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.card {
    background: #fff;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 14px;
}

.form-label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.form-control:focus {
    outline: none;
    border-color: #2563eb;
}

.btn-block {
    width: 100%;
}

.alert {
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 14px;
}

.alert-success {
    background: #e6f4ea;
    color: #146c43;
}

.alert-danger {
    background: #fdecea;
    color: #b91c1c;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}