:root {
            --primary: #00853E; /* Senegal Green */
            --secondary: #F9D423; /* Vibrant Gold */
            --accent: #FD5E53; /* Coral Red */
            --dark: #121212;
            --light: #F8F9FA;
            --glass: rgba(255, 255, 255, 0.15);
            --glass-border: rgba(255, 255, 255, 0.2);
            --text-dark: #2D3748;
            --text-light: #EDF2F7;
            
            /* Gradient Presets */
            --gradient-primary: linear-gradient(135deg, var(--primary) 0%, #00A86B 100%);
            --gradient-accent: linear-gradient(135deg, var(--accent) 0%, #FF7B54 100%);
        }

        /* Dark Mode Variables */
        [data-theme="dark"] {
            --dark: #F8F9FA;
            --light: #121212;
            --glass: rgba(18, 18, 18, 0.6);
            --glass-border: rgba(255, 255, 255, 0.05);
            --text-dark: #EDF2F7;
            --text-light: #2D3748;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: var(--light);
            color: var(--text-dark);
            line-height: 1.6;
            transition: background 0.3s ease, color 0.3s ease;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.2;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Glassmorphism Effect */
        .glass-card {
            background: var(--glass);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            gap: 8px;
            font-size: 0.9rem;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            box-shadow: 0 4px 15px rgba(0, 133, 62, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 133, 62, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-dark);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: white;
        }

        /* Header - Modern Sticky Glass Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 1.5rem 0;
            transition: all 0.4s ease;
            background: var(--glass);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--glass-border);
        }

        header.scrolled {
            padding: 1rem 0;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo img {
            height: 50px;
            transition: all 0.3s ease;
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(to right, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav ul li a {
            font-weight: 600;
            position: relative;
            padding: 0.5rem 0;
        }

        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--accent);
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }

        nav ul li a:hover:after {
            width: 100%;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .theme-toggle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .theme-toggle:hover {
            background: var(--primary);
            color: white;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-dark);
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1002;
        }

        /* Hero Section - Fullscreen Video with Gradient Overlay */
        .hero {
            height: 100vh;
            min-height: 800px;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 133, 62, 0.8) 0%, rgba(253, 94, 83, 0.6) 100%);
            z-index: 1;
        }

        .hero video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            color: white;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            background: linear-gradient(to right, white, #F9D423);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            max-width: 600px;
        }

        .hero-btns {
            display: flex;
            gap: 1.5rem;
        }

        /* About Section - Glass Stats Cards */
        .section {
            padding: 8rem 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-title h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }

        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .about-text p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .stat-item {
            padding: 2rem;
            text-align: center;
            border-radius: 12px;
            transition: all 0.4s ease;
            background: var(--glass);
            backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
        }

        .stat-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            background: var(--primary);
            color: white;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            font-family: 'Playfair Display', serif;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .about-image {
            flex: 1;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
        }

        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
            transform: perspective(1000px) rotateY(-5deg);
            transition: all 0.4s ease;
        }

        .about-image:hover img {
            transform: perspective(1000px) rotateY(0deg);
        }

        /* Pillars Section - 3D Hover Cards */
        .pillars {
            background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
            position: relative;
            overflow: hidden;
        }

        [data-theme="dark"] .pillars {
            background: linear-gradient(135deg, #121212 0%, #1E1E1E 100%);
        }

        .pillars:before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 133, 62, 0.1) 0%, transparent 70%);
            z-index: 0;
        }

        .pillars-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .pillar-card {
            padding: 2.5rem;
            border-radius: 20px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            background: var(--glass);
            backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
            transform-style: preserve-3d;
            transform: perspective(1000px);
        }

        .pillar-card:hover {
            transform: perspective(1000px) rotateX(5deg) translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            background: var(--primary);
            color: white;
        }

        .pillar-card:hover .pillar-icon {
            background: white;
            color: var(--primary);
        }

        .pillar-card:hover .pillar-link {
            color: white;
        }

        .pillar-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            background: var(--gradient-primary);
            color: white;
            transition: all 0.4s ease;
        }

        .pillar-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .pillar-content p {
            margin-bottom: 1.5rem;
            opacity: 0.8;
        }

        .pillar-link {
            color: var(--primary);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
        }

        .pillar-link i {
            transition: all 0.3s ease;
        }

        .pillar-link:hover i {
            transform: translateX(5px);
        }

        /* Team Section - Glass Cards with Hover Effect */
        .team-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .team-member {
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
            background: var(--glass);
            backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
            transform-style: preserve-3d;
        }

        .team-member:hover {
            transform: translateY(-10px) perspective(1000px) rotateY(5deg);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .member-image {
            height: 320px;
            overflow: hidden;
            position: relative;
        }

        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .team-member:hover .member-image img {
            transform: scale(1.1);
        }

        .member-info {
            padding: 2rem;
            text-align: center;
        }

        .member-info h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .member-position {
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 1rem;
            display: block;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .member-country {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            margin-bottom: 1.5rem;
            opacity: 0.8;
        }

        .member-social {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .member-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--glass);
            backdrop-filter: blur(5px);
            border: 1px solid var(--glass-border);
            color: var(--text-dark);
            transition: all 0.3s ease;
        }

        .member-social a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
        }

        /* Policies Section - Modern Accordion */
        .policies-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .policy-item {
            margin-bottom: 1rem;
            border-radius: 12px;
            overflow: hidden;
            background: white;
            backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
        }

        .policy-header {
            padding: 1.5rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .policy-header:hover {
            background: rgba(0, 133, 62, 0.1);
        }

        .policy-header h3 {
            margin: 0;
            font-size: 1.3rem;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
        }

        .policy-header i {
            transition: all 0.3s ease;
        }

        .policy-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .policy-content-inner {
            padding: 2rem 2rem;
            background-color: white;
        }

        .policy-item.active .policy-header {
            background: var(--primary);
            color: white;
        }

        .policy-item.active .policy-header i {
            transform: rotate(180deg);
        }

        /* Join Section - Gradient Background */
        .join {
            background: var(--gradient-primary);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .join:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/diagmonds-light.png');
            opacity: 0.05;
            z-index: 0;
        }

        .join h2 {
            color: white;
        }

        .join p {
            max-width: 700px;
            margin: 0 auto 3rem;
            opacity: 0.9;
        }

        .join-form {
            max-width: 700px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(12px);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            z-index: 1;
        }

        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .form-control {
            width: 100%;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: rgba(255, 255, 255, 0.9);
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
            background: white;
        }

        .form-row {
            display: flex;
            gap: 1.5rem;
        }

        .form-row .form-group {
            flex: 1;
        }

        .submit-btn {
            width: 100%;
            padding: 1rem;
            background: white;
            color: var(--primary);
            font-weight: 700;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .submit-btn:hover {
            background: var(--accent);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* News Section - Card Grid */
        .news-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .news-card {
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s ease;
            background: var(--glass);
            backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
        }

        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .news-image {
            height: 200px;
            overflow: hidden;
        }

        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .news-card:hover .news-image img {
            transform: scale(1.1);
        }

        .news-content {
            padding: 2rem;
        }

        .news-date {
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 0.5rem;
            display: block;
            font-size: 0.9rem;
        }

        .news-content h3 {
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        .news-content p {
            margin-bottom: 1.5rem;
            opacity: 0.8;
        }

        .news-link {
            color: var(--primary);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
        }

        .news-link:hover {
            color: var(--accent);
        }

        .news-link i {
            transition: all 0.3s ease;
        }

        .news-link:hover i {
            transform: translateX(5px);
        }

        /* Social Feed - Twitter-like Cards */
        .social-feed {
            background: var(--glass);
            backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 3rem;
            margin: 5rem 0;
        }

        .feed-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .feed-item {
            padding: 1.5rem;
            border-radius: 12px;
            background: var(--glass);
            backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
            transition: all 0.3s ease;
        }

        .feed-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .feed-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            gap: 1rem;
        }

        .feed-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }

        .feed-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .feed-user {
            font-weight: 700;
        }

        .feed-time {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        .feed-content {
            margin-bottom: 1rem;
        }

        .feed-image {
            margin-bottom: 1rem;
            border-radius: 8px;
            overflow: hidden;
        }

        .feed-image img {
            width: 100%;
            display: block;
        }

        .feed-actions {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
        }

        .feed-action {
            display: flex;
            align-items: center;
            gap: 5px;
            opacity: 0.7;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .feed-action:hover {
            opacity: 1;
            color: var(--accent);
        }

        /* Footer - Modern Glass Footer */
        footer {
            background: var(--glass);
            backdrop-filter: blur(12px);
            border-top: 1px solid var(--glass-border);
            padding: 5rem 0 2rem;
            position: relative;
        }

        footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/diagmonds-light.png');
            opacity: 0.03;
            z-index: 0;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }

        .footer-about {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-logo img {
            height: 50px;
        }

        .footer-logo-text {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(to right, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer-about p {
            opacity: 0.8;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--glass);
            backdrop-filter: blur(5px);
            border: 1px solid var(--glass-border);
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
        }

        .footer-links h3, .footer-newsletter h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            font-family: 'Playfair Display', serif;
        }

        .footer-links ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .footer-links ul li a {
            opacity: 0.8;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links ul li a:hover {
            opacity: 1;
            color: var(--accent);
            transform: translateX(5px);
        }

        .newsletter-form {
            display: flex;
            margin-bottom: 1.5rem;
            border-radius: 50px;
            overflow: hidden;
            background: var(--glass);
            backdrop-filter: blur(5px);
            border: 1px solid var(--glass-border);
        }

        .newsletter-input {
            flex: 1;
            padding: 0.8rem 1.5rem;
            border: none;
            background: transparent;
            color: var(--text-dark);
        }

        .newsletter-input:focus {
            outline: none;
        }

        .newsletter-btn {
            background: var(--gradient-accent);
            color: white;
            border: none;
            padding: 0 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            opacity: 0.9;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--glass-border);
            opacity: 0.7;
            font-size: 0.9rem;
            position: relative;
            z-index: 1;
        }

        /* Language Switcher - Floating Action Button */
        .language-switcher {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 1000;
        }

        .language-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gradient-primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 133, 62, 0.3);
            transition: all 0.3s ease;
            font-weight: 700;
        }

        .language-btn:hover {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 15px 40px rgba(0, 133, 62, 0.4);
        }

        .language-options {
            position: absolute;
            bottom: 70px;
            right: 0;
            background: var(--glass);
            backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            display: none;
            min-width: 150px;
        }

        .language-options a {
            display: block;
            padding: 0.8rem 1.5rem;
            transition: all 0.3s ease;
        }

        .language-options a:hover {
            background: rgba(0, 133, 62, 0.1);
            color: var(--accent);
        }

        .language-switcher:hover .language-options {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Scroll Progress Indicator */
        .progress-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: transparent;
            z-index: 1001;
        }

        .progress-bar {
            height: 100%;
            background: var(--gradient-accent);
            width: 0%;
            transition: width 0.1s ease;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3.5rem;
            }
        }

        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3rem;
            }

            .about-content {
                flex-direction: column;
            }

            .about-image {
                order: -1;
                max-width: 600px;
                margin: 0 auto;
            }

            nav ul {
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 350px;
                height: 100vh;
                background: var(--glass);
                backdrop-filter: blur(20px);
                border-left: 1px solid var(--glass-border);
                transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                z-index: 1001;
                padding: 6rem 2rem 2rem;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

            nav.active {
                right: 0;
            }

            nav ul {
                flex-direction: column;
                gap: 1.5rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .hero-btns {
                flex-direction: column;
                gap: 1rem;
            }

            .btn {
                width: 100%;
            }

            .section-title h2 {
                font-size: 2.5rem;
            }

            .form-row {
                flex-direction: column;
                gap: 0;
            }

            .join-form {
                padding: 2rem;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section {
                padding: 5rem 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .about-stats {
                grid-template-columns: 1fr;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            /* Hide ONLY the header "Devenir Membre" button on mobile */
            .header-actions .btn-primary {
                display: none !important;
            }
        }