/* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f0f0f0;
            padding: 2rem;
        }

        .mockup-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 3rem;
        }

        .page-mockup {
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow: hidden;
            position: relative;
        }

        .page-header {
            background: #000;
            color: white;
            padding: 1rem;
            text-align: center;
            font-size: 1.2rem;
            font-weight: bold;
        }

        .browser-bar {
            background: #e0e0e0;
            padding: 0.5rem 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .browser-dots {
            display: flex;
            gap: 0.3rem;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .red { background: #ff5f57; }
        .yellow { background: #ffbd2e; }
        .green { background: #28ca42; }

        .url-bar {
            background: white;
            padding: 0.3rem 1rem;
            border-radius: 15px;
            margin-left: 1rem;
            flex: 1;
            font-size: 0.9rem;
            color: #666;
        }

        /* Navigation Styles */
        .nav {
            background: rgba(0, 0, 0, 0.95);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid #D4AF37;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-img {
            width: 45px;
            height: 45px;
            object-fit: contain;
            border-radius: 5px;
        }

        .logo-text {
            color: #D4AF37;
            font-size: 1.2rem;
            font-weight: bold;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: background 0.3s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            background: #D4AF37;
            color: #000;
        }

        /* HOME PAGE STYLES */
        .hero-section {
            background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(212,175,55,0.3));
            height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .hero-stars {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(2px 2px at 20% 30%, #D4AF37, transparent),
                radial-gradient(2px 2px at 40% 70%, #FFD700, transparent),
                radial-gradient(1px 1px at 90% 40%, #D4AF37, transparent),
                radial-gradient(1px 1px at 60% 10%, #FFD700, transparent);
            animation: sparkle 3s ease-in-out infinite;
        }

        @keyframes sparkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.8; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        .hero-title {
            font-size: 4rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #fff, #D4AF37);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-section {
            text-align: center;
            padding: 2rem 1rem;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            text-align: center;
            max-width: 800px;
        }

        @media screen and (max-width: 768px) {
            .hero-subtitle {
                font-size: 1rem;
                padding: 0 15px;
            }
        }

        .cta-button {
            background: linear-gradient(45deg, #D4AF37, #FFD700);
            color: #000;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
            text-decoration: none;
            display: inline-block;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
        }

        .mission-section {
            padding: 4rem 2rem;
            background: white;
            text-align: center;
        }

        .section-title {
            font-size: 2.5rem;
            color: #000;
            margin-bottom: 2rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: #D4AF37;
        }

        .mission-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .mission-card {
            background: #000;
            padding: 2rem;
            border-radius: 15px;
            border: 2px solid #D4AF37;
        }

        .mission-card h3 {
            color: #D4AF37;
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        .mission-card p {
            color: white;
            font-size: 1.1rem;
            line-height: 1.6;
            opacity: 0.9;
        }

        .stats-section {
            background: linear-gradient(135deg, #000, #1a1a1a);
            color: white;
            padding: 4rem 2rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .stat-card {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            border: 1px solid #D4AF37;
        }

        .stat-number {
            font-size: 2.5rem;
            color: #D4AF37;
            font-weight: bold;
        }

        .components-section {
            padding: 4rem 2rem;
            background: white;
        }

        .components-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .component-card {
            background: linear-gradient(145deg, #f8f8f8, #e8e8e8);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-left: 5px solid #D4AF37;
        }

        .component-cost {
            color: #D4AF37;
            font-weight: bold;
            font-size: 1.5rem;
            margin-top: 1rem;
        }

        /* ABOUT PAGE STYLES */

        .about-intro {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 3rem;
        }

        .board-section {
            background: #f8f8f8;
            padding: 4rem 2rem;
        }

        .board-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .board-member {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-top: 4px solid #D4AF37;
        }

        .board-member .member-title {
            white-space: pre-line;
            line-height: 1.4;
            margin-top: 0.5rem;
        }

        .member-name {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: #000;
        }

        .member-title {
            color: #D4AF37;
            font-weight: bold;
        }

        .case-statement-section 
        {
            background: #000;
            color: white;
            padding: 4rem 2rem;
        }

        .case-statement-section,
        .case-statement-section .section-title,
        .case-statement-section .budget-breakdown,
        .case-statement-section .budget-item,
        .case-statement-section span {
            color: #fff;
        }

        .budget-breakdown {
            background: rgba(212, 175, 55, 0.1);
            padding: 3rem;
            border-radius: 15px;
            margin: 2rem 0;
        }

        .budget-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
            margin: 1rem 0;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            border-left: 4px solid #D4AF37;
        }

        .budget-bar {
            width: 200px;
            height: 10px;
            background: #333;
            border-radius: 5px;
            margin: 0.5rem 0;
            overflow: hidden;
        }

        .budget-fill {
            height: 100%;
            background: linear-gradient(90deg, #D4AF37, #FFD700);
        }

        .testimonials-section {
            background: white;
            padding: 4rem 2rem;
        }

        .testimonial-card {
            background: #000;
            color: white;
            padding: 3rem;
            border-radius: 20px;
            text-align: center;
            max-width: 800px;
            margin: 2rem auto;
        }

        .testimonial-text {
            font-style: italic;
            font-size: 1.3rem;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .testimonial-author {
            color: #D4AF37;
            font-weight: bold;
            font-size: 1.1rem;
        }

        /* GET INVOLVED PAGE STYLES */
        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .program-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-top: 4px solid #D4AF37;
            color: #000;
        }

        .program-title {
            color: #D4AF37;
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .video-section {
            background: white;
            padding: 4rem 2rem;
            text-align: center;
        }

        .video-container {
            position: relative;
            padding-bottom: 45%;
            height: 0;
            width: 100%;
            max-width: 800px;
            max-height: 400px;
            margin: 0 auto;
            overflow: hidden;
        }

        @media screen and (max-width: 768px) {
            .video-section {
                padding: 1rem 0.5rem;
            }
            .video-container {
                width: 95%;
                padding-bottom: 65%;
                max-height: none;
            }
        }

        @media screen and (min-width: 1200px) {
            .video-container {
                padding-bottom: 400px;
            }
        }

        .video-placeholder {
            background: #000;
            height: 300px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #D4AF37;
            font-size: 1.2rem;
            margin: 2rem auto;
            max-width: 600px;
        }

        .partner-logos {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 3rem 0;
            flex-wrap: wrap;
        }

        .partner-logo {
            width: 100px;
            height: 60px;
            background: #f0f0f0;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #D4AF37;
        }

        /* PARTNER WITH US PAGE STYLES */
        .about-hero,
        .programs-hero,
        .donate-hero {
            background: white;
            color: #000;
            padding: 6rem 2rem 4rem;
            text-align: center;
        }

        .donation-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
            padding: 0 2rem;
        }

        .donation-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-top: 4px solid #D4AF37;
        }

        .naming-opportunities {
            background: #f8f8f8;
            padding: 4rem 2rem;
        }

        .naming-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .naming-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .naming-amount {
            color: #D4AF37;
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .collaboration-section {
            background: #000;
            color: white;
            padding: 4rem 2rem;
        }

        .collaboration-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .collaboration-card {
            background: rgba(212, 175, 55, 0.1);
            padding: 2rem;
            border-radius: 15px;
            border-left: 4px solid #D4AF37;
        }

        .download-section {
            background: white;
            padding: 4rem 2rem;
            text-align: center;
        }

        .download-buttons {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .download-btn {
            background: #000;
            color: white;
            padding: 1rem 2rem;
            border: 2px solid #D4AF37;
            border-radius: 10px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .download-btn:hover {
            background: #D4AF37;
            color: #000;
        }

        .mockup-controls {
            position: fixed;
            top: 20px;
            right: 20px;
            background: white;
            padding: 1rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            z-index: 1000;
        }

        .mockup-controls button {
            background: #D4AF37;
            color: #000;
            border: none;
            padding: 0.5rem 1rem;
            margin: 0.2rem;
            border-radius: 5px;
            cursor: pointer;
            font-size: 0.9rem;
        }

        .page-content {
            display: none;
        }

        .page-content.active {
            display: block;
        }

        .footer {
            background: #000;
            color: white;
            padding: 3rem 2rem 1rem;
            border-top: 3px solid #D4AF37;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .center-wrapper {
            display: flex;
            justify-content: center;
            width: 100%;
            margin-top: 0.4rem;
        }

        .contact-info {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .contact-info span {
            display: inline-flex;
            align-items: center;
            white-space: nowrap;
            line-height: 1.2;
        }

        .contact-info i {
            color: #D4AF37;
            width: 14px;
            text-align: center;
            margin-right: 0.4rem;
            font-size: 0.95rem !important;
        }

        .footer-section h3 {
            color: #D4AF37;
            margin-bottom: 1rem;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: #999;
        }