        :root {
            --black: #000000;
            --dark-gray: #292929;
            --dark-teal: #02353C;
            --white-gray: #F5F5F5;
            --white: #FFFFFF;
            --green-dark: #2EAF7D;
            --green-bright: #2BC444;
            --green-light: #4AE3A8;
            --green-pale: #E4F5E8;
            --primary-color: #2EAF7D;
            --secondary-color: #2BC444;
            --dark-bg: #02353C;
            --light-bg: #F5F5F5;
        }
       
        body {
            font-family: 'Hind Madurai', Tahoma, Geneva, Verdana, sans-serif;
            color: #334155;
            line-height: 1.7;
        }
       
        /* Promo Banner Section - New First Section */
        .promo-banner {
            background: linear-gradient(135deg, var(--green-pale) 0%, var(--light-bg) 100%);
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }
       
        .promo-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 0L0 50l50 50 50-50z" fill="rgba(46,175,125,0.05)"/></svg>') repeat;
            opacity: 0.3;
        }
       
        .promo-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
       
        .promo-image {
            width: 100%;
            max-width: 600px;
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }
       
        .promo-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--dark-teal);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
       
        .promo-subtitle {
            font-size: 1.1rem;
            color: #64748b;
            margin-bottom: 1.5rem;
        }
       
        /* Hero Section - Adjusted Padding */
        .hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-teal) 100%);
            color: white;
            padding: 60px 0 40px; /* Reduced top padding since promo is above */
            position: relative;
            overflow: hidden;
        }
       
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 0L0 50l50 50 50-50z" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
            opacity: 0.1;
        }
       
        .hero-content {
            position: relative;
            z-index: 1;
        }
       
        .difficulty-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            backdrop-filter: blur(10px);
        }
       
        .difficulty-stars {
            color: #fbbf24;
        }
       
        /* Cards */
        .card {
            border: none;
            border-radius: 16px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
       
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }
       
        .card-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--green-light));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            margin-bottom: 20px;
        }
       
        /* Section Titles */
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark-bg);
        }
       
        .section-subtitle {
            font-size: 1.125rem;
            color: #64748b;
            margin-bottom: 3rem;
        }
		
		/* Mobile optimizations */
		@media (max-width: 768px) {
			.section-title {
				font-size: 2rem; /* Reduced from 2.5rem for better fit on smaller screens */
				line-height: 1.2; /* Improves readability on mobile */
			}
			
			.section-subtitle {
				font-size: 1rem; /* Slightly smaller for balance */
				margin-bottom: 2rem; /* Less space to avoid excessive scrolling */
			}
		}

		/* Extra small screens (e.g., phones in portrait) */
		@media (max-width: 480px) {
			.section-title {
				font-size: 1.75rem; /* Further reduction for very small viewports */
			}
			
			.section-subtitle {
				font-size: 0.95rem;
			}
		}
		
		
        /* Content Sections */
        .content-section {
            font-size: 1.05rem;
        }
       
        .content-section p {
            margin-bottom: 1.5rem;
        }
       
        .content-section strong {
            color: var(--primary-color);
            font-weight: 600;
        }
       
        .content-section ul {
            margin: 1.5rem 0;
            padding-left: 0;
        }
       
        .content-section ul li {
            list-style: none;
            padding-left: 2rem;
            position: relative;
            margin-bottom: 1.25rem;
        }
       
        .content-section ul li:before {
            content: "→";
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
            font-size: 1.2rem;
        }
       
        /* Video Section */
        .video-section {
            background: linear-gradient(135deg, var(--light-bg) 0%, var(--green-pale) 100%);
        }
       
        .video-placeholder {
            background: var(--dark-bg);
            border-radius: 16px;
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
            position: relative;
            overflow: hidden;
        }
       
        .video-placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(46, 175, 125, 0.2), rgba(2, 53, 60, 0.2));
        }
       
        /* Advice Cards */
        .advice-card {
            background: white;
            border-left: 4px solid var(--primary-color);
            padding: 28px;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            margin-bottom: 1.5rem;
        }
       
        .advice-card:hover {
            border-left-width: 6px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
            transform: translateX(5px);
        }
       
        .advice-card h3 {
            color: var(--dark-bg);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
       
        .advice-card p {
            color: #475569;
            line-height: 1.8;
            margin: 0;
        }
       
        /* FAQ */
        .faq-item {
            background: white;
            border-radius: 12px;
            margin-bottom: 16px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }
       
        .faq-question {
            padding: 24px 28px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--dark-bg);
            transition: background 0.3s;
            font-size: 1.1rem;
        }
       
        .faq-question:hover {
            background: var(--light-bg);
        }
       
        .faq-answer {
            padding: 0 28px 24px;
            color: #475569;
            line-height: 1.8;
            font-size: 1.05rem;
        }
       
        .faq-answer p {
            margin-bottom: 1rem;
        }
       
        .faq-answer a {
            color: var(--primary-color);
            text-decoration: none;
        }
       
        .faq-answer a:hover {
            text-decoration: underline;
        }
       
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--green-dark) 100%);
            color: white;
            border-radius: 24px;
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
       
		/*
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse 3s ease-in-out infinite;
        }
       
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }
        */
		
        .btn-custom {
            padding: 14px 32px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            background: var(--white);
            color: var(--primary-color);
        }
       
        .btn-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }
       
        /* Footer */
        footer {
            background: var(--dark-bg);
            color: #94a3b8;
            padding: 20px 0 20px;
        }
       
        footer a {
            color: #94a3b8;
            transition: color 0.3s;
        }
       
        footer a:hover {
            color: white;
        }
       
        .location-badge {
            background: rgba(46, 175, 125, 0.1);
            color: var(--white);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
       
        .stat-box {
            text-align: center;
            padding: 24px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }
       
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
        }
       
        .stat-label {
            color: #64748b;
            font-size: 0.875rem;
            margin-top: 8px;
        }
       
        .highlight-box {
            background: linear-gradient(135deg, var(--green-pale) 0%, #d1f2eb 100%);
            border-left: 4px solid var(--primary-color);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
       
        .danger-card {
            border-left: 4px solid var(--secondary-color);
        }
       
        .error-number {
            width: 50px;
            height: 50px;
            background: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        .image-container {
            text-align: center;
            margin: 2rem 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        /* Responsive adjustments for promo banner */
        @media (max-width: 768px) {
            .promo-title {
                font-size: 1.5rem;
            }
            .promo-image {
                max-width: 100%;
            }
            .hero {
                padding: 40px 0 30px;
            }
        }
		
		p {
			text-align: justify;
			text-justify: inter-word;
			word-spacing: normal;
			hyphens: auto;
			lang: fr;
		}
			
		.intro-text {
		  font-weight: 600;
		  font-size: 1rem;
		  color: #555;
		  margin-bottom: 10px;
		}
		
		.hero-title {
		  font-weight: 800;
		  font-size: 3.2rem;
		  line-height: 1.2;
		  color: #000;
		  margin-bottom: 20px;
		}

		.hero-title .text-green {
		  color: var(--green-bright);
		}

		.hero-title .highlight {
		  color: var(--green-bright);
		}

		@media (max-width: 992px) {
		  .hero-title {
			font-size: 2.5rem;
		  }
		}

		@media (max-width: 576px) {

		  .hero-title {
			font-size: 2rem;
		  }

		}
		
		#map {
			height: 400px;
			border-radius: 12px;
			border: 1px solid #e2e8f0;
		}