﻿/* ========================================
   PAGE CONTACT - CARPRO
   ======================================== */

/* Header */
.contact-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #64b22a;
}

/* Info item (icône + texte) */
.contact-info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-info-item .mud-icon-root {
    flex-shrink: 0;
}
/* Actions du formulaire */
.contact-form-actions {
    display: flex;
    gap: 15px;
    margin-top: 56px;
}

/* Responsive */
@media (max-width: 600px) {
    .contact-form-actions {
        flex-direction: column;
    }

        .contact-form-actions button {
            width: 100%;
        }
}