    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }

    body {
        background: #0b1f3a;
        color: white;
        text-align: center;
        overflow-x: hidden;
    }

    #particles-js {
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: -1;
        top: 0;
        left: 0;
    }

    header {
        padding: 40px 20px 20px;
        animation: fadeDown 1s ease;
    }

    header img {
        max-width: 200px;
        filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.3));
    }

    h1 {
        margin-top: 20px;
        color: #38bdf8;
        font-weight: 300;
        letter-spacing: 1px;
    }

    .container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        max-width: 1400px;
        margin: 0 auto;
        gap: 25px;
        padding: 30px 20px;
    }

    .card {
        backdrop-filter: blur(15px);
        background: rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        padding: 30px;
        border: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        animation: fadeUp 0.8s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.08);
        border-color: #38bdf8;
        box-shadow: 0 15px 40px rgba(56, 189, 248, 0.2);
    }

    .card-content {
        flex-grow: 1;
    }

    /* --- CORRECTION ICI --- */
    .card-logo-container {
        width: 100%;
        height: 60px; /* Hauteur fixe pour le cadre du logo */
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }

    .card img {
        max-height: 100%; /* Ne dépasse jamais la hauteur du cadre (60px) */
        max-width: 100%;  /* Ne dépasse jamais la largeur de la carte */
        width: auto;      /* Garde les proportions */
        height: auto;     /* Garde les proportions */
        filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
    }
    /* ---------------------- */

    .card h2 {
        color: #fff;
        margin-bottom: 15px;
        font-size: 1.5em;
    }

    .btn {
        display: inline-block;
        margin: 20px 0 10px;
        padding: 14px 24px;
        border-radius: 12px;
        text-decoration: none;
        font-weight: bold;
        background: #38bdf8;
        color: #0b1f3a;
        transition: 0.2s;
    }

    .btn:hover {
        background: #fff;
        transform: scale(1.05);
    }

    h3 {
        margin-top: 20px;
        font-size: 0.9em;
        text-transform: uppercase;
        color: #38bdf8;
        letter-spacing: 1px;
    }

    ul {
        text-align: left;
        margin: 10px 0;
        padding-left: 20px;
        font-size: 0.9em;
        color: #cbd5e1;
        list-style: none;
    }

    ul li::before {
        content: "•";
        color: #38bdf8;
        font-weight: bold;
        display: inline-block; 
        width: 1em;
        margin-left: -1em;
    }

    footer {
        margin: 50px 20px;
        padding: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .phone {
        margin-top: 15px;
        font-size: 1.6em;
    }

    .phone a {
        color: #38bdf8;
        text-decoration: none;
        font-weight: bold;
    }

    /* Animations */
    @keyframes fadeUp {
        from {opacity: 0; transform: translateY(30px);}
        to {opacity: 1; transform: translateY(0);}
    }

    @keyframes fadeDown {
        from {opacity: 0; transform: translateY(-30px);}
        to {opacity: 1; transform: translateY(0);}
    }

    /* Organisation du footer */
.footer-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

/* Style du lien /infos */
.btn-info {
    display: inline-block;
    padding: 8px 16px;
    font-size: 0.85rem;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-info:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* Ajustement du lien téléphone pour la cohérence */
.phone a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Styles pour les informations dans les cartes */
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #cbd5e1;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.info-value {
    font-weight: 400;
    color: #ffffff;
    font-size: 0.95em;
    text-align: left;
    word-break: break-word;
    line-height: 1.4;
}

.loading {
    color: #94a3b8;
    font-style: italic;
}