      :root {
            --primary: #2563eb;
            --secondary: #dc2626;
            --accent: #f59e0b;
            --light: #f8fafc;
            --white: #ffffff;
            --gray-50: #f1f5f9;
            --gray-100: #e2e8f0;
            --gray-200: #cbd5e1;
            --gray-300: #94a3b8;
            --gray-600: #475569;
            --gray-800: #1e293b;
            --gray-900: #0f172a;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--light);
            color: var(--gray-800);
            line-height: 1.7;
            overflow-x: hidden;
            /* Padding pour éviter que le contenu passe sous la navbar fixe */
            padding-top: 75px;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--white);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-bottom: 1px solid transparent;
        }

        .navbar.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border-bottom-color: var(--gray-100);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .logo:hover {
            transform: translateX(3px);
        }

        .logo-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            color: white;
            font-size: 1.2rem;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .logo-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: rotate(45deg);
            transition: all 0.6s;
        }

        .logo:hover .logo-icon::before {
            left: 100%;
        }

        .logo:hover .logo-icon {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            gap: 0.1rem;
        }

        .logo-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--gray-900);
            line-height: 1;
        }

        .logo-subtitle {
            font-size: 0.7rem;
            color: var(--gray-600);
            font-weight: 500;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 0.5rem;
            align-items: center;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: var(--gray-700);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            padding: 0.6rem 1.2rem;
            border-radius: 8px;
            position: relative;
            display: block;
        }

        .nav-link:hover {
            background: var(--gray-50);
            color: var(--primary);
        }

        .nav-link.active {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
            color: var(--primary);
            font-weight: 600;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0.3rem;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 60%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 2px;
            transition: transform 0.3s ease;
        }

        .nav-link.active::after {
            transform: translateX(-50%) scaleX(1);
        }

        .mobile-toggle {
            display: none;
            width: 40px;
            height: 40px;
            background: var(--gray-50);
            color: var(--primary);
            border: 2px solid var(--gray-100);
            border-radius: 10px;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            transition: all 0.3s ease;
        }

        .mobile-toggle:hover {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
            transform: scale(1.05);
        }

        /* Hero Slider - Version Perfectionnée */
        .hero-slider {
            position: relative;
            min-height: 450px;
            max-height: 600px;
            height: 70vh;
            overflow: hidden;
            margin-top: 0;
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: all 1.8s cubic-bezier(0.4, 0, 0.2, 1);
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .slide.active {
            opacity: 1;
            visibility: visible;
            z-index: 1;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(37, 99, 235, 0.65), 
                rgba(220, 38, 38, 0.55)
            );
            z-index: 1;
        }

        .slide-content {
            position: relative;
            z-index: 2;
            max-width: 1000px;
            padding: 2rem 1.5rem;
            color: var(--white);
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
            transition-delay: 0.2s;
        }

        .slide.active .slide-content {
            opacity: 1;
            transform: translateY(0);
        }

        .slide .mention {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(8px);
            color: var(--white);
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            letter-spacing: 2px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            text-transform: uppercase;
        }

        .slide h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            margin-bottom: 1rem;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
            font-weight: 800;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .slide p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            line-height: 1.6;
        }

        .slide-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--white);
            color: var(--primary);
            padding: 0.75rem 1.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid var(--white);
            font-size: 0.95rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
            position: relative;
            overflow: hidden;
            min-width: 150px;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.7s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn:hover {
            background: transparent;
            color: var(--white);
            transform: translateY(-5px);
            box-shadow: 0 18px 40px rgba(37, 99, 235, 0.35);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--white);
            color: var(--white);
        }

        .btn-outline:hover {
            background: var(--white);
            color: var(--primary);
            box-shadow: 0 18px 40px rgba(255, 255, 255, 0.35);
        }

        .slider-nav {
            position: absolute;
            bottom: 25px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 10;
            gap: 12px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            border: 2px solid transparent;
        }

        .slider-dot::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 22px;
            height: 22px;
            border: 2px solid var(--white);
            border-radius: 50%;
            transform: translate(-50%, -50%) scale(0);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slider-dot.active {
            background: var(--white);
            transform: scale(1.2);
            border-color: var(--accent);
        }

        .slider-dot.active::before {
            transform: translate(-50%, -50%) scale(1);
        }

        /* Sections */
        .section {
            padding: 130px 0;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            margin-bottom: 5.5rem;
            position: relative;
        }

        .section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--gray-900);
            margin-bottom: 1.2rem;
            font-weight: 800;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 3px;
        }

        .section-subtitle {
            font-size: 1.05rem;
            color: var(--gray-600);
            max-width: 750px;
            margin: 0 auto;
            font-weight: 400;
        }

        /* Présentation Section */
        .presentation {
            background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
            position: relative;
            overflow: hidden;
        }

        .presentation-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 5.5rem;
            position: relative;
            z-index: 1;
        }

        .presentation-img {
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(37, 99, 235, 0.18);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .presentation-img::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(220, 38, 38, 0.12));
            z-index: 1;
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .presentation-img:hover::before {
            opacity: 1;
        }

        .presentation-img:hover {
            transform: translateY(-18px) scale(1.025);
            box-shadow: 0 40px 80px rgba(37, 99, 235, 0.28);
        }

        .presentation-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .presentation-img:hover img {
            transform: scale(1.1);
        }

        .presentation-text {
            padding: 2.5rem 0;
        }

        .presentation-text h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.9rem;
            color: var(--gray-900);
            margin-bottom: 1.3rem;
            font-weight: 700;
        }

        .presentation-text p {
            text-align: justify;
            font-size: 1rem;
            margin-bottom: 1.5rem;
            color: var(--gray-700);
            line-height: 1.7;
        }

        .activities-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 3.5rem;
        }

        .activity-card {
            background: var(--white);
            padding: 2rem 1.5rem;
            border-radius: 18px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid var(--gray-100);
            position: relative;
            overflow: hidden;
        }

        .activity-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .activity-card:hover::before {
            transform: scaleX(1);
        }

        .activity-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
            border-color: var(--primary);
        }

        .activity-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.3rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.8rem;
            box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
            transition: all 0.4s ease;
        }

        .activity-card:hover .activity-icon {
            transform: scale(1.1) rotate(8deg);
            box-shadow: 0 15px 35px rgba(37, 99, 235, 0.35);
        }

        .activity-card h3 {
            color: var(--gray-900);
            margin-bottom: 0.8rem;
            font-size: 1.15rem;
            font-weight: 600;
        }

        .activity-card p {
            color: var(--gray-600);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* Mission Section - Fond Blanc */
        .mission {
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        .mission .section-title h2 {
            color: var(--gray-900);
        }

        .mission .section-title h2::after {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }

        .mission .section-subtitle {
            color: var(--gray-600);
        }

        .mission-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .mission-card {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid var(--gray-100);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
        }

        .mission-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(220, 38, 38, 0.05));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .mission-card:hover::before {
            opacity: 1;
        }

        .mission-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
            border-color: var(--primary);
        }

        .mission-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.3rem;
            display: block;
            text-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
        }

        .mission-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1.3rem;
            color: var(--gray-900);
            font-weight: 600;
            line-height: 1.3;
        }

        .mission-card ul {
            list-style: none;
            padding-left: 0;
            margin-bottom: 1.3rem;
        }

        .mission-card ul li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1.8rem;
            font-size: 0.9rem;
            color: var(--gray-700);
            line-height: 1.5;
        }

        .mission-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: bold;
            font-size: 1.1rem;
        }

        .mission-card p {
            font-size: 0.85rem;
            color: var(--gray-600);
            font-style: italic;
            line-height: 1.5;
        }

        /* Footer - Même style que Header */
        footer {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            color: var(--gray-800);
            padding: 4.5rem 0 2.5rem;
            border-top: 1px solid var(--gray-100);
            box-shadow: 0 -10px 30px rgba(37, 99, 235, 0.08);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
            gap: 3.5rem;
            margin-bottom: 3.5rem;
        }

        .footer-section h3 {
            color: var(--primary);
            margin-bottom: 2rem;
            font-size: 1.45rem;
            font-weight: 600;
            position: relative;
            padding-bottom: 1rem;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 2px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 1.1rem;
        }

        .footer-section ul li a {
            color: var(--gray-700);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            font-size: 1.08rem;
        }

        .footer-section ul li a i {
            margin-right: 0.6rem;
            color: var(--secondary);
            transition: transform 0.3s ease;
            width: 20px;
        }

        .footer-section ul li a:hover {
            color: var(--primary);
            padding-left: 0.6rem;
        }

        .footer-section ul li a:hover i {
            transform: translateX(4px);
        }

        .social-links {
            display: flex;
            gap: 1.2rem;
            margin-top: 1.8rem;
        }

        .social-links a {
            width: 52px;
            height: 52px;
            background: var(--gray-50);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 18px;
            transition: all 0.4s ease;
            border: 1px solid var(--gray-100);
        }

        .social-links a:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-6px) scale(1.12);
            box-shadow: 0 18px 35px rgba(37, 99, 235, 0.25);
        }

        .copyright {
            text-align: center;
            padding-top: 3rem;
            border-top: 1px solid var(--gray-100);
            color: var(--gray-600);
            font-size: 0.98rem;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .presentation-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .presentation-img {
                max-width: 650px;
                margin: 0 auto;
            }

            .activities-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 1.8rem;
            }

            .mission-content {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.8rem;
            }
        }

        @media (max-width: 992px) {
            .slide h1 {
                font-size: 2.4rem;
            }

            .slide p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }

            .section-subtitle {
                font-size: 0.95rem;
            }
            
            .mission-content {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }

            .mission-card {
                padding: 1.8rem;
            }

            .mission-card h3 {
                font-size: 1.2rem;
            }

            .mission-card ul li {
                font-size: 0.85rem;
            }

            .mission-card p {
                font-size: 0.8rem;
            }

            .hero-slider {
                min-height: 400px;
                max-height: 500px;
                height: 60vh;
            }

            .activities-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 1.5rem;
            }

            .presentation-text h3 {
                font-size: 1.7rem;
            }

            .presentation-text p {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }

            .logo-text {
                display: none;
            }

            .logo-icon {
                width: 44px;
                height: 44px;
                font-size: 1.1rem;
            }

            .nav-container {
                padding: 0.8rem 1.25rem;
            }

            .mobile-toggle {
                display: flex;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: var(--white);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 3rem;
                transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
                gap: 0;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-link {
                font-size: 1.1rem;
                padding: 1rem 2rem;
                width: 100%;
                text-align: center;
                border-radius: 0;
            }

            .nav-link:hover {
                background: var(--gray-50);
            }

            .nav-link.active {
                background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
            }
            
            .slide h1 {
                font-size: 1.8rem;
            }
            
            .slide p {
                font-size: 0.9rem;
            }

            .slide .mention {
                font-size: 0.75rem;
                padding: 0.4rem 1rem;
            }
            
            .slide-buttons {
                flex-direction: column;
                align-items: center;
                gap: 0.8rem;
                margin-bottom: 3rem;
            }
            
            .btn {
                padding: 0.7rem 1.5rem;
                font-size: 0.9rem;
                min-width: 160px;
            }
            
            .section {
                padding: 50px 0;
            }

            .hero-slider {
                min-height: 380px;
                max-height: 450px;
                height: 55vh;
            }

            .slide-content {
                padding: 1.5rem 1rem;
            }

            .slider-nav {
                bottom: 15px;
            }

            .activities-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.2rem;
            }

            /* Footer mobile - Masquer "Liens Rapides" */
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-section:nth-child(2) {
                display: none;
            }

            .footer-section {
                text-align: center;
            }

            .footer-section h3::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-contact {
                text-align: center;
            }

            .footer-social,
            .social-links {
                justify-content: center;
            }

            .section-title h2 {
                font-size: 1.9rem;
            }

            .presentation-content {
                gap: 3rem;
            }

            .mission-content {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }

            .mission-card {
                padding: 1.5rem;
            }

            .mission-card i {
                font-size: 2rem;
            }

            .mission-card h3 {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 576px) {
            .slide h1 {
                font-size: 1.4rem;
                line-height: 1.3;
            }

            .slide p {
                font-size: 0.8rem;
                margin-bottom: 1.2rem;
                line-height: 1.5;
            }

            .slide .mention {
                font-size: 0.65rem;
                padding: 0.3rem 0.7rem;
                margin-bottom: 0.7rem;
            }
            
            .section-title h2 {
                font-size: 1.7rem;
            }

            .section-subtitle {
                font-size: 0.85rem;
            }
            
            .presentation-text h3 {
                font-size: 1.4rem;
            }

            .presentation-text p {
                font-size: 0.85rem;
            }
            
            .activity-card {
                padding: 1.3rem 1rem;
            }

            .activity-card h3 {
                font-size: 1rem;
            }

            .activity-card p {
                font-size: 0.8rem;
            }

            .activity-icon {
                width: 55px;
                height: 55px;
                font-size: 1.4rem;
                margin-bottom: 1rem;
            }
            
            .mission-card {
                padding: 1.3rem;
            }

            .mission-card i {
                font-size: 1.8rem;
                margin-bottom: 1rem;
            }

            .mission-card h3 {
                font-size: 1rem;
                margin-bottom: 1rem;
            }

            .mission-card ul li {
                font-size: 0.8rem;
                margin-bottom: 0.6rem;
                padding-left: 1.5rem;
            }

            .mission-card ul li::before {
                font-size: 0.9rem;
            }

            .mission-card p {
                font-size: 0.75rem;
            }

            .hero-slider {
                min-height: 350px;
                max-height: 400px;
                height: 50vh;
            }

            .btn {
                padding: 0.65rem 1.2rem;
                font-size: 0.85rem;
                min-width: 140px;
            }

            .slide-content {
                padding: 1rem 0.8rem;
            }

            .slide-buttons {
                gap: 0.8rem;
                margin-bottom: 2.5rem;
            }

            .slider-nav {
                bottom: 15px;
            }

            .activities-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
        }