* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-dark: #1a1a1a;
            --primary-green: #355E3B;
            --accent-orange: #D2B48C;
            --maze-gray: #34495e;
            --light-bg: #ecf0f1;
            --text-light: #ffffff;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--primary-dark);
            color: var(--text-light);
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 2px solid var(--primary-green);
        }

        nav ul {
            display: flex;
            justify-content: center;
            list-style: none;
            flex-wrap: wrap;
            gap: 2rem;
            padding: 0 2rem;
        }

        nav a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-green);
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        nav a:hover {
            color: var(--primary-green);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="maze" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M0 0 L0 40 M20 0 L20 20 M20 30 L20 40 M40 20 L0 20" stroke="%23355E3B" stroke-width="2" fill="none" opacity="0.1"/></pattern></defs><rect width="1200" height="600" fill="url(%23maze)"/></svg>');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
        }

        .hero-content {
            z-index: 10;
            padding: 2rem;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 8vw, 5rem);
            margin-bottom: 1rem;
            text-shadow: 0 0 20px rgba(46, 204, 113, 0.5);
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { text-shadow: 0 0 20px rgba(53, 94, 59, 0.5); }
            to { text-shadow: 0 0 30px rgba(53, 94, 59, 0.8), 0 0 40px rgba(53, 94, 59, 0.4); }
        }

        .team-number {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            color: var(--accent-orange);
            margin-bottom: 1rem;
        }

        .tagline {
            font-size: clamp(1rem, 2vw, 1.5rem);
            color: var(--primary-green);
            font-style: italic;
            margin-bottom: 2rem;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, var(--primary-green), #2d4f33);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 15px rgba(53, 94, 59, 0.4);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(53, 94, 59, 0.6);
        }

        /* Section Styles */
        section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        section h2 {
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 2rem;
            text-align: center;
            position: relative;
            padding-bottom: 1rem;
            color: white;
        }

        section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(to right, var(--primary-green), var(--accent-orange));
        }

        /* About Section */
        .about {
            background: linear-gradient(135deg, var(--primary-green), #2d4f33);
            color: white;
        }

        .about-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .about-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s, border-color 0.3s;
        }

        .about-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .about-card h3 {
            color: var(--accent-orange);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .about-card p {
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.95);
        }

        /* Photo Gallery */
        .gallery {
            background: var(--primary-dark);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .gallery-item {
            position: relative;
            aspect-ratio: 1;
            background: linear-gradient(135deg, var(--maze-gray), #2c3e50);
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            font-size: 3rem;
            color: var(--primary-green);
            background: rgba(53, 94, 59, 0.1);
        }

        /* Donation Section */
        .donate {
            background: linear-gradient(135deg, #D2B48C, #C4A572);
            color: white;
        }

        .donate-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .donate-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 3rem 2rem;
            border-radius: 20px;
            margin: 2rem 0;
        }

        .donate-info {
            font-size: 1.3rem;
            margin: 1.5rem 0;
        }

        .nonprofit-badge {
            display: inline-block;
            background: rgba(53, 94, 59, 0.3);
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: bold;
            margin: 1rem 0;
        }

        .team-number-highlight {
            font-size: 2rem;
            color: var(--primary-green);
            font-weight: bold;
            background: rgba(0, 0, 0, 0.3);
            padding: 1rem 2rem;
            border-radius: 10px;
            margin: 1rem 0;
            display: inline-block;
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
            color: white;
        }

        .contact-form {
            max-width: 600px;
            margin: 3rem auto 0;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--accent-orange);
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: white;
            font-family: inherit;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-orange);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, var(--accent-orange), #C4A572);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(210, 180, 140, 0.4);
        }

        /* Footer */
        footer {
            background: #000;
            padding: 2rem;
            text-align: center;
            border-top: 2px solid var(--primary-green);
        }

        footer p {
            color: rgba(255, 255, 255, 0.7);
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav ul {
                gap: 1rem;
            }

            section {
                padding: 3rem 1rem;
            }
        }

        /* Maze Runner themed decorative elements */
        .maze-decoration {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .maze-line {
            position: absolute;
            background: rgba(53, 94, 59, 0.1);
            animation: slide 20s linear infinite;
        }

        @keyframes slide {
            from { transform: translateX(-100%); }
            to { transform: translateX(100%); }
        }