body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f9fafb;
    color: #545454;
}

.main-nav {
    background-color: #ffffff;
    padding: 0.5rem 2rem; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: static;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

.nav-brand {
    padding: 0;
}

.nav-logo {
    height: 100px;
    width: auto;
    padding: 5px;
    border-radius: 5px;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu a {
    color: #1a252f;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0 1.5rem;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.nav-menu a:hover {
    color: #0066cc;
    border-bottom: 1px solid #0066cc;
}


.nav-contact {
    padding: 0 1rem;
}

.phone-number {
    color: #1a252f;
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.phone-number i {
    margin-right: 8px;
    color: #4A8FE1;
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        padding: 0.5rem 0; /* Réduction pour mobile */
    }

    .nav-brand, .nav-contact {
        margin: 0.5rem 0;
        text-align: center;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
    }

    .nav-menu a {
        margin: 0.5rem 0;
        display: block;
        text-align: center;
        font-size: 1.2rem;
    }

    .nav-logo {
        height: 80px;
    }

    .phone-number {
        font-size: 1.2rem;
    }

    body {
        margin-top: 150px; /* Ajustement pour mobile avec padding réduit */
    }
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 10px;
}

.section {
    margin-bottom: 40px;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

h1, h2 {
    color: #000000;
    font-weight: 700;
}

.menu-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.menu-btn {
    background-color: #ffffff; /* Fond blanc */
    color: #4A8FE1; /* Couleur de police basée sur l'ancien fond bleu */
    padding: 15px 30px;
    border: 1px solid #E0E7FF; /* Bordure pour un effet moderne */
    border-radius: 10px; /* Coins plus arrondis pour élégance */
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.menu-btn i {
    margin-right: 10px;
    color: #4A8FE1; /* Icônes en bleu */
}

.menu-btn:hover {
    transform: translateY(-3px); /* Lévitation légère */
    box-shadow: 0 6px 20px rgba(74, 143, 225, 0.1);
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.insurance-item {
    background-color: #ffffff;
    border: 1px solid #E0E7FF;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.insurance-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(74, 143, 225, 0.1);
}

.insurance-icon {
    font-size: 2.5em;
    color: #4A8FE1;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.insurance-item:hover .insurance-icon {
    color: #3B82F6;
}

.iframe-container {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.iframe-container.active {
    display: block;
    opacity: 1;
}

.iframe-container.contact {
    padding: 20px;
    background-color: #F9FAFB;
    border-radius: 5px;
    text-align: center;
}

iframe {
    width: 100%;
    border: none;
    border-radius: 5px;
}

.catchy-text {
    text-align: center;
    font-size: 1.3em;
    color: #000000;
    margin: 25px 0;
    font-weight: 600;
}

.catchy-image {
    text-align: center;
    margin-bottom: 25px;
}

.catchy-image i {
    font-size: 5em;
    color: #4A8FE1;
}

footer {
    background-color: #4A8FE1;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
}

footer a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 500;
}

footer a:hover {
    text-decoration: underline;
    color: #FACC15;
}