/* ==============================================
           STYLES GÉNÉRAUX - Reset et configuration de base
           ============================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arimo', sans-serif;
            color: #333;
            line-height: 1.6;
            scroll-behavior: smooth;
        }

        /* ==============================================
           BANNIÈRE DE CONSTRUCTION - Alerte en haut du site
           ============================================== */
        .construction-banner {
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
            color: white;
            padding: 15px 20px;
            text-align: center;
            font-weight: bold;
            font-size: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            position: relative;
            overflow: hidden;
        }

        .construction-banner::before {
            content: '⚠️';
            font-size: 24px;
            margin-right: 10px;
            animation: pulse 2s infinite;
        }

        .construction-banner::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.1); }
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        /* ==============================================
           SÉPARATEUR EN FORME DE VAGUES
           Utilisé entre chaque section pour créer un effet visuel
           ============================================== */

        /* ==============================================
           SECTION HEADER - En-tête avec présentation et navigation
           Contient le nom, la description et les boutons de navigation
           ============================================== */
        .header {
            background: white;
            padding: 60px 0px 60px 0px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
        }

        .header-intro {
            height: 425px;
            max-width: 750px;
            background: #86E5A1;
            padding: 30px;
            border-top-right-radius: 20px; /* Arrondit le coin supérieur droit */
            border-bottom-right-radius: 20px;
            margin-left: 0;
            margin-right: auto;
        }

        .header-intro h1 {
            font-size: 50px;
            margin-bottom: -25px;
            text-transform: uppercase;
        }
        .header-intro #titre {
            font-size: 30px;
            margin-bottom: 15px;
            line-height: 1.8;
        }

        .header-intro #intro {
            font-size: 22px;
            line-height: 1.2;
            margin-bottom: 50px;
        }
        /*
        .photo1{
                width: 200px;
                height: 425px;
                border-top-left-radius: 30px;
                border-top-right-radius: 30px;
                border-bottom-right-radius: 30px;
                Pas de border-radius sur bottom-right
                clip-path: polygon(
                    0 0,
                    100% 0,
                    100% 100%,
                    80% 100%,
                    0 70%
                );
            }
        */
        /* Navigation avec boutons dans le header */
        .header-nav {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .nav-button {
            background: #86E5A1;
            color: rgb(0, 0, 0);
            padding: 15px 30px;
            border-radius: 20px;
            text-decoration: none;
            text-align: center;
            max-width: 200px;
            transition: all 0.3s;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .nav-button:hover {
            background: #86E5A1;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }

        /* ==============================================
           SECTION "QUI SUIS-JE ?" - Présentation du parcours
           ============================================== */
        .qui-suis-je-section {
            background: #86E5A1;
            padding: 280px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .qui-suis-je-content {
            background: #E0EFFF;
            max-width: 600px;
            border-radius: 20px;
            padding: 30px;
            
        }

        .qui-suis-je-content h2 {
            font-size: 52px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .qui-suis-je-content p {
            font-size: 20px;
            line-height: 1.8;
        }

        /* ==============================================
           SECTION "MON TRAVAIL" - Présentation des services
           Affiche 3 cartes avec les différents types de services
           ============================================== */
        .work-section {
            background: white;
            padding: 180px 20px;
        }

        .work-section h2 {
            text-align: center;
            font-size: 52px;
            margin-bottom: 40px;
            text-transform: uppercase;
        }

        /* Grille responsive pour les cartes de travail */
        .work-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(404px, 100%), 1fr));
            /* Changé de 300px à 400px */
            gap: 30px;
            max-width: 1750px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .work-card-title {
            background: #86E5A1;
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
            border-bottom-left-radius: 25px;
            border-bottom-right-radius: 25px;
            overflow: hidden;
            padding-bottom: 0;
            /* SUPPRIME min-width: 550px; */
            position: relative;
        }

        .work-card-title h3 {
            font-size: 36px;
            padding: 20px 15px 10px 15px;
            text-transform: uppercase;
            margin: 0;
            background: #86E5A1;
            color: #000;
            line-height: 1.2;
            min-height: 120px;
        }

        .work-card-content {
            background: #E0EFFF;
            padding: 20px;
            min-height: 500px;
            border-bottom-left-radius: 25px;
            border-bottom-right-radius: 25px;
            margin-top: 0;
            z-index: 1;
        }

        .work-card-content p, .work-card-content ul {
            font-size: 20px;
            line-height: 1.7;
            color: #000;
        }

        .work-card-content ul {
            margin-left: 20px;
            margin-top: 10px;
        }

        /* ==============================================
           SECTION PRESTATIONS - Détail des bilans et sensibilisations
           ============================================== */
        .prestations-section {
            background: #86E5A1;
            padding: 60px 20px;
        }

        .prestations-section h2 {
            text-align: center;
            font-size: 36px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .prestations-subtitle {
            text-align: center;
            font-size: 24px;
            margin-bottom: 40px;
            color: white;
        }

        /* Grille pour les cartes de prestations */
        .prestations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto 40px;
        }

        .prestation-card {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .prestation-card h3 {
            font-size: 16px;
            margin-bottom: 12px;
            text-transform: uppercase;
            color: #333;
        }

        .prestation-card p {
            font-size: 13px;
            line-height: 1.7;
        }

        /* ==============================================
           SECTION TARIFS - Tableau des prix
           ============================================== */
        .tarifs-section {
            background: white;
            padding: 60px 20px;
        }

        .tarifs-section h2 {
            text-align: center;
            font-size: 36px;
            margin-bottom: 40px;
            text-transform: uppercase;
        }

        .tarifs-table {
            max-width: 800px;
            margin: 0 auto;
            background: #f5f5f5;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .tarifs-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .tarifs-table th {
            background: #86E5A1;
            color: white;
            padding: 15px;
            text-align: left;
            font-size: 14px;
        }

        .tarifs-table td {
            padding: 15px;
            border-bottom: 1px solid #ddd;
            font-size: 13px;
        }

        .tarifs-table tr:last-child td {
            border-bottom: none;
        }

        /* ==============================================
           SECTION CONTACT - Coordonnées et informations
           ============================================== */
        .contact-section {
            background: #86E5A1;
            padding: 60px 20px;
        }

        .contact-section h2 {
            text-align: center;
            font-size: 36px;
            margin-bottom: 40px;
            text-transform: uppercase;
        }

        .contact-content {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .contact-content h3 {
            font-size: 20px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
            font-size: 14px;
        }

        .contact-info p {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* ==============================================
           FOOTER - Pied de page avec informations légales
           ============================================== */
        .footer {
            background: #e6f7ff;
            padding: 20px;
            text-align: center;
            font-size: 12px;
            color: #666;
        }

        /* ==============================================
           RESPONSIVE - Adaptation pour mobiles et tablettes
           ============================================== */
        @media (max-width: 768px) {
            .header {
                flex-direction: column;
            }

            .work-grid, .prestations-grid {
                grid-template-columns: 1fr;
            }
        }

/*v0.1*/