<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* (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 (dÃ©jÃ&nbsp; dÃ©fini dans le code prÃ©cÃ©dent) */
.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;
}
.small-text {
    font-size: 0.8em;
    color: #666;
    margin-top: -5px;
}

/* Hero Section spÃ©cifique Ã&nbsp; la dÃ©ratisation */
.hero-deratisation {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/frames-deratisation-idf/sd-servive-deratisation-idf-7.jpeg'); /* Image de fond de la dÃ©ratisation */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; /* AjoutÃ© pour Ã©viter la rÃ©pÃ©tition de l'image */
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero-deratisation .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-deratisation h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

/* Section Tarifs DÃ©ratisation */
.tarifs-deratisation {
    padding: 40px 0;
}

.tarif-section {
    margin-bottom: 40px;
}

.tarif-section h3 {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.icon-tarif {
    width: 30px; /* Ajustez la taille des icÃ´nes */
    height: 30px;
    margin-right: 10px;
}

.tarif-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Colonnes responsives */
    gap: 20px;
}

.tarif-item {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 15px;
    text-align: center;
}

.tarif-item p:first-child {
    font-weight: bold;
    margin-bottom: 5px;
}

/* 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;
}

.footer-column h3 {
    color: white;
}

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);
}

/* 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-grid {
        grid-template-columns: 1fr; /* Une seule colonne 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;
    }
}</pre></body></html>