        /* Les Scouts Template Custom Styles */
        :root {
            --ls-vert-base: #5cb85c;
            --ls-vert-fonce: #449d44;
            --ls-bleu-fonce: #17395c;
            --ls-prune: #7c3b7e;
            --ls-orange: #f0ad4e;
            --ls-gris: #d9d9d9;
            --ls-turquoise: #5bc0de;
            --ls-bleu-clair: rgb(21, 173, 234);
            --ls-rouge: rgb(214, 15, 60);
            --ls-rose: rgb(224, 63, 123);
            --ls-baladins: rgb(0, 160, 222);
            --ls-louveteaux: rgb(41, 111, 82);
            --ls-eclaireurs: rgb(0, 79, 159);
            --ls-pionniers: rgb(213, 19, 23);
            --ls-mondial: rgb(98, 37, 153);
            --ls-blanc: rgb(255, 255, 255);
            --ls-noir: rgb(0, 0, 0);
        }

        body {
            font-family: 'Mali', cursive, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.7;
            color: #333;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Caveat Brush', cursive;
            font-weight: 700;
        }

        /* Header avec style Scouts */
        .header-main {
            background: var(--ls-bleu-fonce);
            color: white;
            padding: 3rem 0;
            position: relative;
            overflow: hidden;
        }

        .header-main::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            border: 3px solid rgba(255,255,255,0.2);
            border-radius: 50%;
        }

        .header-main::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }

        .header-main h1 {
            font-size: 3rem;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 1;
        }

        .header-main p {
            font-size: 1.3rem;
            position: relative;
            z-index: 1;
            opacity: 0.95;
        }

        /* Navigation sticky */
        .navbar-scouts {
            background: white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            padding: 0;
        }

        .navbar-scouts .navbar-nav {
            gap: 0.25rem;
        }

        .navbar-scouts .nav-link {
            color: #333;
            font-weight: 500;
            padding: 1rem 1rem;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
        }

        .navbar-scouts .nav-link:hover,
        .navbar-scouts .nav-link:focus,
        .navbar-scouts .nav-link.active {
            color: var(--ls-bleu-fonce);
            border-bottom-color: var(--ls-bleu-fonce);
            background: rgba(92, 184, 92, 0.05);
        }

        .navbar-scouts .nav-link i {
            font-size: 1.1rem;
        }

        /* Dropdown menu styling */
        .navbar-scouts .dropdown-menu {
            border: 2px solid var(--ls-bleu-fonce);
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            padding: 0.5rem 0;
            margin-top: 0;
        }

        .navbar-scouts .dropdown-item {
            padding: 0.75rem 1.5rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .navbar-scouts .dropdown-item:hover {
            background: var(--ls-bleu-fonce);
            color: white;
        }

        .navbar-scouts .dropdown-item .badge {
            font-size: 0.75rem;
            padding: 0.25rem 0.5rem;
        }

        .navbar-scouts .dropdown-toggle::after {
            margin-left: 0.3rem;
        }

        /* Responsive adjustments for smaller screens */
        @media (max-width: 1200px) {
            .navbar-scouts .nav-link {
                padding: 0.875rem 0.75rem;
                font-size: 0.9rem;
            }

            .navbar-scouts .nav-link i {
                font-size: 1rem;
            }
        }

        @media (max-width: 992px) {
            .navbar-scouts .nav-link {
                padding: 0.75rem 0.6rem;
                font-size: 0.85rem;
            }

            .navbar-scouts .nav-link span:not(.badge) {
                display: none;
            }

            .navbar-scouts .nav-link i {
                margin-right: 0;
            }
        }

        @media (max-width: 768px) {
            .navbar-scouts {
                padding: 0.5rem 0;
            }

            .navbar-scouts .navbar-nav {
                gap: 0;
            }

            .navbar-scouts .nav-link {
                padding: 0.6rem 0.4rem;
                font-size: 0.8rem;
            }

            .navbar-scouts .dropdown-menu {
                font-size: 0.85rem;
            }

            .navbar-scouts .dropdown-item {
                padding: 0.5rem 1rem;
            }
        }

        /* Cards avec style Bootstrap */
        .card-scouts {
            border: none;
            border-radius: 8px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card-scouts:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }

        .card-scouts .card-header {
            background: var(--ls-vert-base);
            color: white;
            border: none;
            font-weight: 600;
            padding: 1rem 1.5rem;
        }

        .card-scouts .card-body {
            padding: 1.5rem;
        }

        /* Alert boxes style Scouts */
        .alert-scouts {
            border-left: 4px solid var(--ls-vert-fonce);
            background: #f4f9f4;
            border-radius: 4px;
            padding: 1.5rem;
            margin-bottom: 2rem;
        }

        .alert-scouts-orange {
            border-left-color: var(--ls-orange);
            background: #fff9f0;
        }

        .alert-scouts-bleu {
            border-left-color: var(--ls-bleu-fonce);
            background: #f0f4f8;
        }

        /* Section headers */
        .section-title {
            font-size: 2.5rem;
            color: var(--ls-bleu-fonce);
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 1rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--ls-orange);
        }

        /* Liste avec bullets personnalisés */
        .list-scouts {
            list-style: none;
            padding-left: 0;
        }

        .list-scouts li {
            padding: 0.5rem 0 0.5rem 2rem;
            position: relative;
        }

        .list-scouts li::before {
            content: '§';
            position: absolute;
            left: 0;
            color: var(--ls-bleu-fonce);
            font-weight: 700;
            font-size: 1.3rem;
        }

        /* Contact box */
        .contact-box {
            background: var(--ls-bleu-fonce);
            color: white;
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem 0;
        }

        .contact-box h3 {
            color: var(--ls-orange);
            margin-bottom: 1rem;
        }

        .contact-box a {
            color: var(--ls-orange);
            text-decoration: none;
            border-bottom: 1px solid var(--ls-orange);
        }

        .contact-box a:hover {
            color: white;
            border-bottom-color: white;
        }

        /* Badge style */
        .badge-scouts {
            background: var(--ls-bleu-fonce);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 500;
            display: inline-block;
            margin: 0.25rem;
        }

        /* Footer */
        footer {
            background: #2c3e50;
            color: rgba(255,255,255,0.8);
            padding: 2.5rem 0;
            margin-top: 4rem;
        }

        footer p {
            margin-bottom: 0.5rem;
        }

        /* Decorative elements style Scouts */
        .bg-topping-lines {
            position: relative;
            overflow: hidden;
        }

        .bg-topping-lines::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(45deg, transparent 48%, rgba(92,184,92,0.1) 49%, rgba(92,184,92,0.1) 51%, transparent 52%),
                linear-gradient(-45deg, transparent 48%, rgba(92,184,92,0.1) 49%, rgba(92,184,92,0.1) 51%, transparent 52%);
            background-size: 30px 30px;
            pointer-events: none;
            opacity: 0.3;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header-main h1 {
                font-size: 2rem;
            }
            
            .header-main p {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
