
        /* Variables et styles de base */
        :root {
            --primary: #15803d;
            --primary-dark: #0c5a2a;
            --secondary: #f8f9fa;
            --accent: #ffa500;
            --text: #333;
            --text-light: #6c757d;
            --white: #ffffff;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        html {
            font-size: 62.5%;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            background-color: var(--white);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary);
        }

        /* Section Hero avec Slider */
        .hero-slider {
            position: relative;
            height: 70vh;
            overflow: hidden;
            margin-top: 70px;
        }

        .slides-container {
            position: relative;
            height: 100%;
            width: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slider-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: var(--white);
            z-index: 2;
            width: 80%;
        }

        .slider-content h1 {
            font-size: 4.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            margin-bottom: 2rem;
        }

        .slider-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .slider-controls {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 3;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-dot.active {
            background: var(--white);
            transform: scale(1.2);
        }

        /* Titre Section */
        #title {
            text-align: center;
            padding: 4rem 2rem;
        }

        #title h1 {
            font-size: 4.5rem;
            position: relative;
            margin-bottom: 3rem;
        }

        #title h1::after {
            content: '';
            display: block;
            width: 120px;
            height: 5px;
            background: var(--primary);
            margin: 15px auto;
            border-radius: 3px;
        }

        /* Grille des Hôtels */
        .hotels-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hotels-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .hotel-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .hotel-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .image-container {
            width: 100%;
            height: 250px;
        }

        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hotel-content {
            padding: 20px;
        }

        .hotel-content h3 {
            font-size: 2.2rem;
            margin-bottom: 10px;
        }

        .hotel-content h3 span {
            color: var(--accent);
        }

        .hotel-email, .hotel-phone {
            font-size: 1.6rem;
            color: var(--text-light);
            margin-bottom: 8px;
            display: block;
        }

        .hotel-email {
            color: var(--primary);
            text-decoration: none;
        }

        .hotel-email:hover {
            text-decoration: underline;
        }

        .show-more-btn {
            display: inline-block;
            padding: 10px 20px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 5px;
            font-size: 1.6rem;
            font-weight: 500;
            cursor: pointer;
            margin-top: 15px;
            transition: var(--transition);
        }

        .show-more-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }

        .more-info {
            padding: 0 20px 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }

        .more-info.active {
            max-height: 500px;
        }

        .more-info h4 {
            font-size: 1.8rem;
            margin: 15px 0 10px;
            color: var(--primary);
        }

        .more-info p {
            font-size: 1.6rem;
            color: var(--text-light);
            margin-bottom: 15px;
            line-height: 1.7;
        }

        .localisation-link {
            display: inline-block;
            padding: 8px 15px;
            background: var(--accent);
            color: var(--white);
            border-radius: 5px;
            text-decoration: none;
            font-size: 1.6rem;
            transition: var(--transition);
        }

        .localisation-link:hover {
            background: #e69500;
            transform: translateY(-2px);
        }

        /* Message d'erreur */
        .no-hotel-found {
            text-align: center;
            padding: 50px 20px;
            max-width: 800px;
            margin: 0 auto;
        }

        .no-hotel-found h4 {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .no-hotel-found p {
            font-size: 1.8rem;
            color: var(--text-light);
        }

        /* Responsive */
        @media (max-width: 992px) {
            html {
                font-size: 58%;
            }
            
            .hero-slider {
                height: 60vh;
            }
            
            .slider-content h1 {
                font-size: 3.8rem;
            }
            
            #title h1 {
                font-size: 3.8rem;
            }
        }

        @media (max-width: 768px) {
            .hero-slider {
                height: 50vh;
            }
            
            .slider-content h1 {
                font-size: 3.2rem;
            }
            
            #title h1 {
                font-size: 3.2rem;
            }
            
            .hotels-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .hero-slider {
                height: 40vh;
            }
            
            .slider-content h1 {
                font-size: 2.8rem;
            }
            
            #title h1 {
                font-size: 2.8rem;
            }
        }
    