    /* Contact Section */
    .contact-section {
        padding: 80px 50px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 60px;
        align-items: start;
    }

    /* Contact Info */
    .contact-info-section {
        position: sticky;
        top: 20px;
    }

    .contact-info-section h2 {
        font-size: 32px;
        color: #1e293b;
        margin-bottom: 20px;
    }

    .contact-intro {
        color: #64748b;
        line-height: 1.8;
        margin-bottom: 40px;
        font-size: 16px;
    }

    .contact-cards {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .contact-card {
        background: white;
        padding: 25px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        display: flex;
        align-items: center;
        gap: 20px;
        transition: all 0.3s;
    }

    .contact-card:hover {
        transform: translateX(10px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }

    .contact-card-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
        flex-shrink: 0;
    }

    .contact-card-content h3 {
        color: #1e293b;
        margin-bottom: 5px;
        font-size: 18px;
    }

    .contact-card-content p {
        color: #64748b;
        margin: 0;
        font-size: 15px;
    }

    .contact-card-content a {
        color: #27ae60;
        text-decoration: none;
        font-weight: 600;
    }

    .contact-card-content a:hover {
        text-decoration: underline;
    }

    /* Emergency Card */
    .emergency-card {
        background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
        color: white;
        margin-top: 20px;
        padding: 30px;
    }

    .emergency-card .contact-card-icon {
        background: rgba(255, 255, 255, 0.2);
    }

    .emergency-card h3 {
        color: white !important;
    }

    .emergency-card p {
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .emergency-card a {
        color: #fbbf24 !important;
    }

    /* Contact Form */
    .contact-form-section {
        background: white;
        padding: 50px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .form-header {
        margin-bottom: 40px;
    }

    .form-header h2 {
        font-size: 32px;
        color: #1e293b;
        margin-bottom: 10px;
    }

    .form-header p {
        color: #64748b;
        font-size: 16px;
    }

    /* Map Section */
    .map-section {
        padding: 0;
        margin-top: 80px;
    }

    .map-container {
        width: 100%;
        height: 450px;
        background: #e2e8f0;
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #64748b;
        font-size: 18px;
    }

    /* FAQ Section */
    .faq-section {
        background: #f8fafc;
        padding: 80px 50px;
        margin-top: 80px;
    }

    .faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .faq-section h2 {
        font-size: 36px;
        color: #1e293b;
        text-align: center;
        margin-bottom: 50px;
    }

    .faq-item {
        background: white;
        padding: 25px;
        border-radius: 15px;
        margin-bottom: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        cursor: pointer;
        transition: all 0.3s;
    }

    .faq-item:hover {
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }

    .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #1e293b;
        font-weight: 600;
        font-size: 18px;
    }

    .faq-question i {
        color: #27ae60;
        transition: transform 0.3s;
    }

    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }

    .faq-answer {
        color: #64748b;
        line-height: 1.8;
        margin-top: 15px;
        display: none;
    }

    .faq-item.active .faq-answer {
        display: block;
    }

    /* Responsive */
    @media (max-width: 968px) {
        .contact-grid {
            grid-template-columns: 1fr;
            gap: 50px;
        }

        .contact-info-section {
            position: relative;
            top: 0;
        }
    }

    @media (max-width: 768px) {
        .contact-section,
        .faq-section {
            padding: 60px 20px;
        }

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

/* Additional utility classes for contact page */
.contact-info-subtitle {
    font-size: 13px;
    margin-top: 5px;
}

.contact-map-link {
    color: #27ae60;
}

.services-hint {
    font-size: 13px;
    font-weight: normal;
    color: #64748b;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
}

.service-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
}

.service-checkbox-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.services-error {
    color: #dc2626;
    font-size: 14px;
    margin-top: 8px;
    display: none;
}

.contact-map-iframe {
    border: 0;
    border-radius: 20px;
}

/* Fix pour aligner les checkboxes et les labels sur la même ligne */
.service-checkbox-label {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    cursor: pointer;
    font-weight: normal;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.service-checkbox-label:hover {
    background-color: rgba(37, 99, 235, 0.05);
}

.service-checkbox-label span {
    display: inline !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.5;
}

.service-checkbox-input {
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #2563eb;
}
