 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            /* font-family: 'Arial', sans-serif; */
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
           
        }

        .container-btn {
            max-width: 1000px;
            margin: 0 auto;
            margin-top: 3rem;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            position: relative;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #2c3e50;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            font-size: 1.5rem;
            margin: 0 1rem;
            text-decoration: none;
            transition: color 0.3s ease;
            color: #333;
            font-weight: 500;
        }

        .nav-links a:hover {
            color : #f39c12;
        }

        main {
            margin-top: 80px;
        }

        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: url('./images/bac_a_eau.jpg') center/cover;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.3;
            z-index: -1;
        }

        .hero-content {
            background: rgba(255, 255, 255, 0.0);
            padding: 3rem;
            border-radius: 20px;
            position: absolute;
            top: 200px;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #ddd, #ddd);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: #ddd;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(231, 76, 60, 0.6);
        }

        .section {
            padding: 5rem 0;
            background: white;
        }

        .section:nth-child(even) {
            background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #333;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .portfolio-item {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .portfolio-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .portfolio-item-content {
            padding: 1.5rem;
        }

        .portfolio-item h3 {
            margin-bottom: 0.5rem;
            color: #2c3e50;
        }


        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
           
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #666;
        }

        .about-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
           
        }

        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
           
        }

        #anchor_contact {
            background: url('./images/champ_de_fleurs_2.jpg') center/cover;
            position: relative;
        }

        #anchor_contact .container {
            transform: translateX(150px);
        }

        .contact-header .section-title {
            transform: translateX(-150px);
            text-align: center;
        }


        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .retour-form {
            max-width: 600px;
            margin-top: 5rem;
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
            color: #333;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2c3e50;
        }

        .submit-btn {
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            width: 10rem;
            transition: transform 0.3s ease;

        }

        .retour-btn {
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            width: 10rem;
            transition: transform 0.3s ease;

        }

        #btn-contact{
            margin-top: 4rem;
            width: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
        }

        footer {
            background: #2c3e50;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }

        .legal {
            color: white;
            text-align: center;
        }
        .legal a {
            color: white;
            font-size: 1.5rem;
            margin: 0 1rem;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .legal a:hover {
            color: #f39c12;
        }

        #demande {
            margin-bottom: 2rem;
        }

        #contact-container {
            transform: translateX(100px);
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .hero-content {
                padding: 2rem;
                margin: 1rem;
            }

            /* Adjust nav padding for mobile */
            nav {
                padding: 1rem;
            }

            /* Position language switcher at top right for mobile */
            .language-switcher {
                position: absolute;
                top: 50%;
                right: 1rem;
                transform: translateY(-50%);
                width: auto;
                z-index: 1001;
            }

            #lang-selector {
                width: 4rem;
                padding: 8px 30px 8px 12px;
                font-size: 0.9rem;
            }
        }

        [hidden] {
    display: none !important;
    }

/* Legal section styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.legal-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid #2c3e50;
}

.legal-section h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    border-bottom: 2px solid #f39c12;
    padding-bottom: 0.5rem;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #ecf0f1;
    line-height: 1.6;
}

.legal-list li:last-child {
    border-bottom: none;
}

.legal-list strong {
    color: #2c3e50;
    font-weight: 600;
    display: inline-block;
    min-width: 150px;
}

.legal-text {
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
    text-align: justify;
}

.legal-text:last-child {
    margin-bottom: 0;
}

/* Responsive design for legal section */
@media (max-width: 768px) {
    .legal-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .legal-list strong {
        display: block;
        min-width: auto;
        margin-bottom: 0.3rem;
    }

    .legal-list li {
        padding: 0.6rem 0;
    }
}

/* CGV (Conditions Générales de Vente) Styles */
.cgv-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
    border-bottom: 3px solid #2c3e50;
}

.cgv-title {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.cgv-intro {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
}

.last-updated {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
}

.cgv-content {
    max-width: 900px;
    margin: 0 auto;
}

.cgv-article {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cgv-article:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.article-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

.article-title {
    color: #2c3e50;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    padding-top: 0.5rem;
    border-bottom: 2px solid #f39c12;
    padding-bottom: 0.8rem;
}

.article-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.article-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.article-list li {
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
    line-height: 1.6;
    color: #444;
    position: relative;
}

.article-list li::before {
    content: "•";
    color: #f39c12;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: -1.2rem;
    top: 0;
}

.sub-article {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2c3e50;
}

.sub-article h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.sub-article .article-content {
    margin-bottom: 0;
}

.sub-article .article-list {
    margin: 1rem 0;
    padding-left: 1rem;
}

.mediation-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CGV Navigation */
.cgv-nav {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    max-height: 70vh;
    overflow-y: auto;
    z-index: 100;
}

.cgv-nav h4 {
    color: #2c3e50;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cgv-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cgv-nav li {
    margin-bottom: 0.5rem;
}

.cgv-nav a {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
    display: block;
    padding: 0.3rem 0;
}

.cgv-nav a:hover {
    color: #2c3e50;
}

/* Print styles for CGV */
@media print {
    .cgv-article {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }

    .cgv-nav {
        display: none;
    }

    .retour-btn {
        display: none;
    }
}

/* Responsive design for CGV */
@media (max-width: 768px) {
    .cgv-header {
        margin-bottom: 2rem;
        padding: 2rem 1rem;
    }

    .cgv-title {
        font-size: 2.2rem;
    }

    .cgv-intro {
        font-size: 1rem;
    }

    .cgv-article {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .article-number {
        left: 20px;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .article-title {
        font-size: 1.4rem;
    }

    .sub-article {
        padding: 1rem;
        margin: 1.5rem 0;
    }

    .cgv-nav {
        display: none; /* Hide navigation on mobile */
    }
}

/* Contact Section Styles */
.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.services-section,
.contact-info-section {
    align-self: start;
}

.services-section {
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.contact-info-section {
    width: 100%;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
    text-align: center;
}

.contact-info-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #555;
    font-size: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    width: 100%;
    max-width: 300px;
    transition: transform 0.2s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 1.5rem;
    color: #2c3e50;
}

.contact-text {
    text-align: left;
    flex: 1;
}

.contact-text strong {
    color: #2c3e50;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-text a {
    color: #f39c12;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-text a:hover {
    color: #e67e22;
}

.contact-cta {
    border-top: 2px solid #f0f0f0;
    padding-top: 2rem;
}

.cta-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.response-time {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.2);
}

.response-icon {
    font-size: 1rem;
}

/* Responsive design for contact section */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .contact-info-card {
        padding: 2rem;
        margin-top: 1rem;
    }

    .contact-header {
        margin-bottom: 2rem;
    }

     .language-switcher {
            float: right;
        }
}

@media (max-width: 768px) {
    .contact-content {
        gap: 2.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
        min-height: 120px;
    }

    .service-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .service-card p {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .contact-info-card {
        padding: 1.5rem;
        margin-top: 0;
    }

    .contact-info-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .contact-info-card p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .contact-details {
        gap: 0.8rem;
    }

    .contact-item {
        padding: 0.8rem;
        gap: 0.8rem;
        border-radius: 10px;
    }

    .contact-icon {
        font-size: 1.3rem;
    }

    .contact-text strong {
        font-size: 0.9rem;
    }

    .contact-text a {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    #anchor_contact .container {
        transform: none;
    }

    .contact-header .section-title {
        transform: none;
        text-align: center;
    }

    .contact-content {
        gap: 2rem;
        justify-items: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        justify-items: center;
        max-width: 320px;
        margin: 0 auto;
    }

    .service-card {
        padding: 1.2rem;
        min-height: auto;
        text-align: center;
        width: 100%;
        max-width: 300px;
    }

    .service-icon {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .service-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.2rem;
    }

    .service-card p {
        font-size: 0.8rem;
        line-height: 1.2;
    }

    .contact-info-section {
        display: flex;
        justify-content: center;
    }

    .contact-info-card {
        padding: 1.2rem;
        text-align: center;
        max-width: 320px;
        width: 100%;
    }

    .contact-info-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .contact-info-card p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        line-height: 1.4;
    }

    .contact-details {
        gap: 0.6rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
        padding: 0.6rem;
    }

    .contact-text {
        text-align: center;
    }

    .contact-text strong {
        font-size: 0.85rem;
        display: block;
        margin-bottom: 0.2rem;
    }

    .contact-text a {
        font-size: 0.85rem;
        word-break: break-all;
    }

    .response-time {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin-top: 1rem;
    }

     /* Ensure language switcher stays at top right on very small screens */
            .language-switcher {
                position: absolute;
                top: 50%;
                right: 0.5rem;
                transform: translateY(-50%);
                width: auto;
                z-index: 1001;
            }

            #lang-selector {
                width: 3.5rem;
                padding: 6px 25px 6px 10px;
                font-size: 0.85rem;
            }

            .logo {
                font-size: 1.5rem;
            }
}


/* The main container for positioning our custom arrow */
        .language-switcher {

            width: 200px; /* Set a specific width */
        }

        /* Style the <select> element itself */
        #lang-selector {
            float:right;
            /* --- Reset default styles --- */
            appearance: none; /* This removes native browser styling */
            -webkit-appearance: none;
            -moz-appearance: none;
            
            /* --- Custom box styles --- */
            width: 5rem; /* Set a specific width */
            padding: 10px 40px 10px 15px; /* Add space for text and the arrow */
            border: 1px solid #d1d5db; /* A soft, light gray border */
            border-radius: 6px; /* Slightly rounded corners */
            background-color: #ffffff; /* A clean white background */
            font-size: 1rem; /* 16px */
            color: #111827; /* A dark, readable text color */
            cursor: pointer;
            outline: none; /* Remove the default browser outline on focus */
            transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
        }
        
        /* --- Focus and Hover states for interactivity --- */
        #lang-selector:hover {
            border-color: #9ca3af; /* Darken border on hover */
        }
        
        #lang-selector:focus {
            border-color: #3b82f6; /* A professional blue for focus */
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25); /* A subtle glow effect */
        }

        [hidden] {
            display: none !important;
        }

