/* (Ajoutez les variables de couleurs, polices, etc., ici - comme dans le code précédent) */
:root {
    --primary-color: #003366;
    --secondary-color: #f4f4f4;
    --accent-color: #ff9900;
    --text-color: #333;
    --font-family: 'Open Sans', sans-serif;
    --font-size-base: 16px;
    --border-radius: 5px;
    --box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
/* Style pour les notifications */
.notification {
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.notification.info {
    background-color: #e9f5ff;
    border: 1px solid #90caf9;
    color: #1976d2;
}

.notification.warning {
    background-color: #fff8e1;
    border: 1px solid #ffc107;
    color: #ff9800;
}
/* Autres styles de base (comme dans le code précédent) */
body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    color: var(--text-color);
    background-color: var(--secondary-color);
    margin: 0;
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

h1, h2, h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.5em;
}

p {
    margin-bottom: 15px;
}

ul {
    list-style: none;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
    white-space: nowrap;
}

.button:hover {
    opacity: 0.9;
}

.primary-button {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
}

.primary-button:hover {
    background-color: darken(var(--accent-color), 10%);
}

.secondary-button {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-button:hover {
    color: #fff;
    background-color: var(--primary-color);
}
/* Header */
header {
    background-color: #fff;
    box-shadow: var(--box-shadow);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 60px;
}

nav ul {
    display: flex;
    gap: 20px;
}

nav a {
    font-weight: bold;
    padding: 5px 10px;
    border-radius: var(--border-radius);
}

nav a:hover {
    background-color: var(--accent-color);
    color: #fff;
}

.contact-header .call-button {
    background-color: var(--accent-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--border-radius);
}

/* Tarifs Section */
.tarifs {
    padding: 40px 0;
}

.tarif-table {
    overflow-x: auto;  /* Permet de scroller horizontalement sur les petits écrans */
    margin-bottom: 20px;
}

.tarif-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.tarif-table th, .tarif-table td {
    border: 1px solid #ddd; /* Bordures pour les cellules */
    padding: 10px;
    text-align: left;
}

.tarif-table th {
    background-color: var(--primary-color); /* Fond pour l'en-tête */
    color: #fff;
    font-weight: bold;
}

.tarif-table tr:nth-child(even) {
    background-color: #f9f9f9; /* Alterner la couleur de fond pour une meilleure lisibilité */
}

/* Call to Action Section */
.cta {
    background-color: var(--primary-color);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 20px 0;
    font-size: 0.9em;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

footer .footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.footer-column {
    flex: 1;
    margin-right: 20px;
}

.footer-column h3 {
    color: #fff;
}

footer .logo img {
    height: 40px;
    margin-bottom: 15px;
}

footer a {
    color: #fff;
}

footer a:hover {
    text-decoration: underline;
}

footer ul {
    margin-top: 0;
}

.copyright {
    text-align: center;
    margin-top: 20px;
    width: 100%;
}

/* Media Queries pour la Responsivité */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        margin-top: 10px;
    }

    .tarif-table table {
        font-size: 0.9em; /* Réduire la taille de la police sur les tablettes */
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons a {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-column {
        margin-bottom: 20px;
    }

    .copyright {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }
    h1 {
        font-size: 2em;
    }
    h2 {
        font-size: 1.75em;
    }
    h3 {
        font-size: 1.25em;
    }

    nav ul {
        flex-direction: column; /* Menu en colonne sur les smartphones */
        text-align: center;
    }
    .tarif-table table {
        font-size: 0.8em; /* Réduire la taille de la police encore plus sur les petits écrans */
    }

}