
        .agency-card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px; 
        }

        /* --- CARTE D'AGENCE (DEVIENT UN DIV CONTENEUR) --- */
        .agency-card {
            display: flex; 
            flex-direction: column;
            justify-content: space-between; 
            height: 100%; 
            
            transition: box-shadow 0.3s ease; 
            cursor: pointer; /* Indiquer que la carte est interactive */
            
            background: #ffffff;
            border: 1px solid #f0f0f0;
            border-radius: 12px; 
            padding: 30px;
            text-align: center;
            overflow: hidden; 
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
        }
        
        .agency-card:hover {
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); 
        }

        /* Le contenu principal (texte, adresse) */
        .agency-content-wrapper {
            flex-grow: 1;
        }
        
        .agency-card > .agency-content-wrapper > .fas {
            color: #007bff; 
            font-size: 2.5em; 
            margin-bottom: 20px;
            display: block; 
        }

        .agency-card h3 {
            color: #333; 
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 1.4em;
        }
        
        .agency-card .address-line {
            display: block;
            margin-bottom: 10px;
            font-size: 0.9em;
            color: #777; 
        }
        
        .agency-card p {
            color: #555;
            margin-bottom: 20px;
            font-size: 0.95em;
        }
        
        /* --- BOUTONS D'ACTION (PIED DE CARTE) --- */
        .agency-actions {
            width: 100%;
            margin-top: auto; 
        }

        /* --- BOUTONS DE CONTACT RAPIDE (DANS LA CARTE) --- */
        .quick-contact-buttons {
            display: flex; 
            justify-content: space-between; 
            gap: 10px; 
            margin-bottom: 15px; 
        }
        
        /* Styles pour les petits boutons Fixe/WhatsApp */
        .quick-contact-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 49%; 
            padding: 8px 10px; 
            font-size: 0.9em; 
            border-radius: 5px;
            text-decoration: none;
            color: white;
            transition: background-color 0.3s;
        }
        
        .quick-contact-btn i {
            margin-right: 5px;
        }
        
        /* Bouton principal "Découvrir l'agence" */
        .agency-cta-button { 
            display: block; 
            width: 100%; 
            padding: 10px 20px;
            border-radius: 5px;
            background-color: #007bff; 
            color: white;
            text-transform: uppercase;
            font-weight: 600;
            text-decoration: none;
            transition: background-color 0.3s ease;
            border: none;
        }

        .agency-cta-button:hover {
            background-color: #0056b3; 
        }
        
        /* Styles de couleur pour les boutons */
        .btn-whatsapp {
            background-color: #25D366; 
            border: 1px solid #25D366;
        }
        .btn-whatsapp:hover {
            background-color: #1DA851;
        }
        .btn-call {
             background-color: #007bff; 
             border: 1px solid #007bff;
        }
        .btn-call:hover {
             background-color: #0056b3;
        }
        
        /* Styles pour le HERO et CTA général (gros boutons) */
        .hero-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap; /* Assure que les boutons Hero ne débordent pas sur mobile */
        }
        .hero-buttons .btn-primary, .hero-buttons .btn-secondary {
            padding: 12px 25px;
        }