
        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;900&display=swap');
        
        :root {
            --black: #000000;
            --white: #ffffff;
            --gray-light: #f5f5f5;
            --gray-medium: #aaaaaa;
            --gray-dark: #333333;
            --transition-slow: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
            --transition-medium: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
            scroll-behavior: smooth;
        }
        
        body {
            background-color: var(--black);
            color: var(--white);
            overflow-x: hidden;
        }
        
        .hidden {
            opacity: 0;
            transform: translateY(20px);
        }
        
        .visible {
            opacity: 1;
            transform: translateY(0);
            transition: var(--transition-medium);
        }
        
        /* Splash Screen */
        #splash-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--black);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        
        .logo-container {
            margin-bottom: 30px;
        }
        
        .logo {
            width: 180px;
            height: auto;
        }
        
        .loading-bar {
            width: 200px;
            height: 1px;
            background-color: var(--gray-medium);
            position: relative;
            overflow: hidden;
        }
        
        .loading-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0;
            background-color: var(--white);
            animation: loading 2s ease-out forwards;
        }
        
        @keyframes loading {
            0% { width: 0; }
            100% { width: 100%; }
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            transition: var(--transition-medium);
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
        }
        
        .header-logo img {
            width: 80px;
            height: auto;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 40px;
        }
        
        nav ul li a {
            color: var(--white);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            transition: var(--transition-fast);
            padding: 5px 0;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--white);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .mobile-toggle {
            display: none;
            cursor: pointer;
            z-index: 200;
        }
        
        .mobile-toggle span {
            display: block;
            width: 25px;
            height: 1px;
            background-color: var(--white);
            margin: 6px 0;
            transition: var(--transition-medium);
        }
        
        /* Hero Section */
        #hero {
            position: relative;
            height: 100vh;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            overflow: hidden;
        }
        
        .text-reveal {
            overflow: hidden;
        }
        
        .text-reveal h1, .text-reveal h2 {
            transform: translateY(100%);
            animation: textReveal 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
            animation-delay: 2.5s;
        }
        
        .hero-intro {
            padding: 0 15%;
        }
        
        #hero h1 {
            font-size: 70px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 30px;
            text-transform: uppercase;
        }
        
        #hero h2 {
            font-size: 24px;
            font-weight: 300;
            max-width: 600px;
            line-height: 1.4;
            color: var(--gray-medium);
        }
        
        .countdown-container {
            position: absolute;
            bottom: 10%;
            left: 15%;
            display: flex;
            align-items: center;
            opacity: 0;
            animation: fadeIn 1s ease forwards;
            animation-delay: 3s;
        }
        
        .countdown-container p {
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-right: 20px;
        }
        
        .countdown {
            display: flex;
        }
        
        .countdown-box {
            margin-right: 20px;
            min-width: 60px;
        }
        
        .countdown-value {
            font-size: 32px;
            font-weight: 600;
        }
        
        .countdown-label {
            font-size: 12px;
            color: var(--gray-medium);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .background-text {
            position: absolute;
            font-size: 400px;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.08);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: -1;
            white-space: nowrap;
        }
        
        .scroll-down {
            position: absolute;
            bottom: 5%;
            right: 5%;
            display: flex;
            flex-direction: column;
            align-items: center;
            animation: bounce 2s infinite;
            animation-delay: 3.5s;
            opacity: 0;
            animation-fill-mode: forwards;
        }
        
        .scroll-down span {
            font-size: 12px;
            letter-spacing: 1px;
            transform: rotate(90deg);
            margin-bottom: 15px;
        }
        
        .scroll-down i {
            font-size: 24px;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
                opacity: 1;
            }
            40% {
                transform: translateY(-10px);
                opacity: 1;
            }
            60% {
                transform: translateY(-5px);
                opacity: 1;
            }
        }
        
        @keyframes textReveal {
            0% {
                transform: translateY(100%);
            }
            100% {
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            0% {
                opacity: 0;
            }
            100% {
                opacity: 1;
            }
        }
        
        /* About Section */
        #about, #mission, #values, #team, #programs, #why, #join {
            padding: 150px 15%;
            position: relative;
        }
        
        .section-heading {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--gray-medium);
            margin-bottom: 30px;
        }
        
        .title {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 60px;
            line-height: 1.2;
            max-width: 700px;
        }
        
        .about-content {
            display: flex;
            justify-content: space-between;
        }
        
        .about-text {
            width: 48%;
        }
        
        .about-text p {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 30px;
            color: var(--gray-medium);
        }
        
        .about-stats {
            width: 48%;
            display: flex;
            flex-wrap: wrap;
        }
        
        .stat-box {
            width: 50%;
            margin-bottom: 40px;
        }
        
        .stat-value {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 14px;
            color: var(--gray-medium);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Mission Section */
        .mission-content {
            display: flex;
            flex-direction: column;
        }
        
        .mission-item {
            margin-bottom: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .mission-item:last-child {
            border-bottom: none;
        }
        
        .mission-item h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .mission-item p {
            font-size: 16px;
            line-height: 1.8;
            color: var(--gray-medium);
            max-width: 700px;
        }
        
        /* Values Section */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px;
        }
        
        .value-box {
            position: relative;
        }
        
        .value-number {
            position: absolute;
            top: -30px;
            left: -20px;
            font-size: 72px;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.08);
            z-index: -1;
        }
        
        .value-box h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .value-box p {
            font-size: 16px;
            line-height: 1.8;
            color: var(--gray-medium);
        }
        
        /* Programs Section */
        .programs-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .program-box {
            padding: 40px;
            background-color: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition-medium);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .program-box::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
            transition: var(--transition-slow);
        }
        
        .program-box:hover {
            background-color: rgba(255, 255, 255, 0.05);
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .program-box:hover::before {
            left: 100%;
        }
        
        .program-box h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .program-box p {
            font-size: 15px;
            line-height: 1.7;
            color: var(--gray-medium);
        }
        
        /* Why Section */
        .why-content {
            display: flex;
            flex-direction: column;
        }
        
        .why-item {
            margin-bottom: 30px;
        }
        
        .why-item h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .why-item p {
            font-size: 16px;
            line-height: 1.8;
            color: var(--gray-medium);
            max-width: 700px;
        }
        
        /* Join Section */
        .join-content {
            display: flex;
            flex-direction: column;
            width: 100%;
        }
        
        .join-text {
            width: 100%;
            margin-bottom: 50px;
        }
        
        .join-text p {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 30px;
            color: var(--gray-medium);
        }
        
        .join-categories {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 30px;
            margin-bottom: 60px;
        }
        
        .category {
            padding: 15px 25px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition-medium);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            flex: 0 0 auto;
            display: inline-block;
            text-align: center;
            min-width: 150px;
        }
        
        .category::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: -100%;
            background: var(--white);
            z-index: -1;
            transition: var(--transition-medium);
        }
        
        .category:hover {
            color: var(--black);
        }
        
        .category:hover::after {
            left: 0;
        }
        
        .newsletter-signup {
            width: 100%;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 60px;
            margin-top: 20px;
        }
        
        .newsletter-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .newsletter-description {
            font-size: 16px;
            color: var(--gray-medium);
            margin-bottom: 30px;
            max-width: 700px;
        }
        
        .newsletter-form {
            display: flex;
            max-width: 600px;
            width: 100%;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 15px 20px;
            background-color: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--white);
            font-size: 16px;
            transition: var(--transition-fast);
        }
        
        .newsletter-input:focus {
            outline: none;
            border-color: var(--white);
        }
        
        .newsletter-input::placeholder {
            color: var(--gray-medium);
        }
        
        .newsletter-button {
            padding: 0 30px;
            background-color: var(--white);
            color: var(--black);
            border: none;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: var(--transition-medium);
        }
        
        .newsletter-button:hover {
            background-color: var(--gray-light);
        }
        
        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background-color: var(--white);
            color: var(--black);
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-decoration: none;
            margin-top: 40px;
            transition: var(--transition-medium);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: var(--transition-fast);
        }
        
        .cta-button::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--black);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.5s ease;
            z-index: -1;
        }
        
        .cta-button:hover {
            color: var(--white);
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        .cta-button:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }
        
        /* Footer */
        footer {
            padding: 60px 15%;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
        }
        
        .footer-logo {
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .footer-logo img {
            width: 100px;
            height: auto;
        }
        
        .footer-info p {
            font-size: 14px;
            line-height: 1.6;
            color: var(--gray-medium);
            max-width: 300px;
        }
        
        .footer-links {
            display: flex;
        }
        
        .footer-column {
            margin-left: 60px;
        }
        
        .footer-column h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--gray-medium);
            text-decoration: none;
            font-size: 14px;
            transition: var(--transition-fast);
        }
        
        .footer-column ul li a:hover {
            color: var(--white);
        }
        
        .copyright {
            margin-top: 60px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
        }
        
        .copyright p {
            font-size: 12px;
            color: var(--gray-medium);
        }
        
        .social-links a {
            color: var(--gray-medium);
            margin-left: 20px;
            font-size: 14px;
            transition: var(--transition-fast);
        }
        
        .social-links a:hover {
            color: var(--white);
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .programs-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            #hero h1 {
                font-size: 60px;
            }
        }
        
        @media (max-width: 992px) {
            #about, #mission, #values, #team, #programs, #why, #join {
                padding: 100px 10%;
            }
            
            .hero-intro {
                padding: 0 10%;
            }
            
            .countdown-container {
                left: 10%;
            }
            
            .values-grid, .about-content {
                grid-template-columns: 1fr;
                flex-direction: column;
            }
            
            .about-text, .about-stats {
                width: 100%;
                margin-bottom: 40px;
            }
            
            #hero h1 {
                font-size: 50px;
            }
            
            .background-text {
                font-size: 300px;
            }
            
            .category {
                min-width: 130px;
            }
            
            .button-container {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            
            .join-team-btn, .partner-btn {
                width: 100%;
                max-width: 300px;
            }
        }
        
        @media (min-width: 1200px) {
            .join-categories {
                display: flex;
                flex-wrap: wrap;
                gap: 20px;
            }
            
            .category {
                flex: 0 0 auto;
                min-width: 170px;
                margin: 0;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                height: 100vh;
                background-color: var(--black);
                padding: 100px 50px;
                transition: var(--transition-medium);
            }
            
            nav.active {
                right: 0;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 20px 0;
            }
            
            nav ul li a {
                font-size: 20px;
            }
            
            .mobile-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 6px);
            }
            
            .mobile-toggle.active span:nth-child(2) {
                opacity: 0;
            }
            
            .mobile-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -6px);
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .footer-links {
                margin-top: 40px;
                flex-wrap: wrap;
            }
            
            .footer-column {
                margin: 0;
                width: 50%;
                margin-bottom: 30px;
            }
            
            .copyright {
                flex-direction: column;
                align-items: center;
            }
            
            .social-links {
                margin-top: 20px;
            }
            
            .social-links a {
                margin: 0 10px;
            }
            
            .programs-grid {
                grid-template-columns: 1fr;
            }
            
            #hero h1 {
                font-size: 40px;
            }
            
            .title {
                font-size: 30px;
            }
            
            .background-text {
                font-size: 200px;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-input {
                margin-bottom: 15px;
            }
            
            .newsletter-button {
                width: 100%;
                padding: 15px;
            }
        }
        
        @media (max-width: 576px) {
            #about, #mission, #values, #programs, #why, #join {
                padding: 80px 5%;
            }
            
            .hero-intro {
                padding: 0 5%;
            }
            
            .countdown-container {
                left: 5%;
                flex-direction: column;
                align-items: flex-start;
            }
            
            .countdown-container p {
                margin-bottom: 10px;
            }
            
            #hero h1 {
                font-size: 32px;
            }
            
            #hero h2 {
                font-size: 18px;
            }
            
            .footer-column {
                width: 100%;
            }
            
            .stat-box {
                width: 100%;
            }
            
            .background-text {
                font-size: 150px;
            }
        }
    