* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-dark: #000000;
            --secondary-dark: #1a1a1a;
            --neon-blue: #00ffff;
            --electric-purple: #8a2be2;
            --white: #ffffff;
            --gradient-main: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #8a2be2 100%);
            --gradient-accent: linear-gradient(45deg, #00ffff 0%, #8a2be2 100%);
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--white);
            background: var(--gradient-main);
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--neon-blue);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--neon-blue);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: var(--neon-blue);
            transition: 0.3s;
        }

        main {
            margin-top: 80px;
            padding: 4rem 0;
        }

        .page-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .page-header h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .contact-form {
            background: rgba(26, 26, 26, 0.9);
            border: 2px solid var(--electric-purple);
            border-radius: 20px;
            padding: 3rem;
        }

        .contact-form h2 {
            color: var(--neon-blue);
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--neon-blue);
            font-weight: bold;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px;
            border: 2px solid var(--neon-blue);
            border-radius: 10px;
            background: rgba(0, 0, 0, 0.5);
            color: var(--white);
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--electric-purple);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .submit-btn {
            background: var(--gradient-accent);
            color: var(--white);
            padding: 15px 40px;
            border: none;
            border-radius: 25px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
        }

        .contact-info {
            background: rgba(0, 255, 255, 0.1);
            border: 2px solid var(--neon-blue);
            border-radius: 20px;
            padding: 3rem;
        }

        .contact-info h2 {
            color: var(--neon-blue);
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }

        .info-section {
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid var(--electric-purple);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
        }

        .info-section h3 {
            color: var(--electric-purple);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .info-section p {
            margin-bottom: 0.5rem;
            line-height: 1.7;
        }

        .amazon-link {
            background: var(--gradient-accent);
            color: var(--white);
            padding: 12px 24px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
            margin-top: 1rem;
            transition: transform 0.3s ease;
        }

        .amazon-link:hover {
            transform: scale(1.05);
        }

        .team-section {
            background: rgba(138, 43, 226, 0.1);
            border: 2px solid var(--electric-purple);
            border-radius: 20px;
            padding: 3rem;
            margin: 4rem 0;
        }

        .team-section h2 {
            color: var(--electric-purple);
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: center;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .team-card {
            background: rgba(0, 0, 0, 0.5);
            border: 2px solid var(--neon-blue);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
        }

        .team-card img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 3px solid var(--neon-blue);
            margin-bottom: 1rem;
            object-fit: cover;
        }

        .team-card h3 {
            color: var(--neon-blue);
            margin-bottom: 0.5rem;
        }

        .team-card .role {
            color: var(--electric-purple);
            margin-bottom: 1rem;
        }

        .map-section {
            background: rgba(0, 0, 0, 0.5);
            border: 2px solid var(--electric-purple);
            border-radius: 20px;
            padding: 3rem;
            margin: 4rem 0;
            text-align: center;
        }

        .map-section h2 {
            color: var(--electric-purple);
            margin-bottom: 2rem;
        }

        .map-placeholder {
            width: 100%;
            height: 300px;
            background: rgba(0, 255, 255, 0.1);
            border: 2px solid var(--neon-blue);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            color: var(--neon-blue);
            font-size: 1.2rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }

        .social-link {
            background: var(--gradient-accent);
            color: var(--white);
            padding: 15px;
            border-radius: 50%;
            text-decoration: none;
            font-size: 1.5rem;
            transition: transform 0.3s ease;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .social-link:hover {
            transform: scale(1.1);
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 1002;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            animation: fadeIn 0.3s;
        }

        .modal-content {
            background: var(--secondary-dark);
            margin: 15% auto;
            padding: 2rem;
            border: 2px solid var(--neon-blue);
            border-radius: 15px;
            width: 90%;
            max-width: 400px;
            text-align: center;
        }

        .close {
            color: var(--neon-blue);
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .close:hover {
            color: var(--white);
        }

        footer {
            background: var(--primary-dark);
            padding: 3rem 0 1rem;
            text-align: center;
            border-top: 2px solid var(--electric-purple);
            margin-top: 4rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: var(--neon-blue);
            margin-bottom: 1rem;
        }

        .footer-section a {
            color: var(--white);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--neon-blue);
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(0, 0, 0, 0.95);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 2rem;
                transition: left 0.3s ease;
            }

            .nav-links.active {
                left: 0;
            }

            .burger {
                display: flex;
            }

            .page-header h1 {
                font-size: 2.5rem;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contact-form,
            .contact-info,
            .team-section,
            .map-section {
                padding: 2rem;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .social-links {
                gap: 1rem;
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

