* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --neon-cyan: #00FFFF;
            --neon-purple: #FF00FF;
            --neon-orange: #FF6B00;
            --dark-bg: #0a0a0a;
            --darker-bg: #050505;
            --text-white: #ffffff;
            --text-gray: #cccccc;
            --glow-cyan: 0 0 20px var(--neon-cyan);
            --glow-purple: 0 0 20px var(--neon-purple);
            --glow-orange: 0 0 20px var(--neon-orange);
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--text-white);
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
            overflow-x: hidden;
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--neon-cyan);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: var(--neon-cyan);
            text-shadow: var(--glow-cyan);
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links li a {
            color: var(--text-white);
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 25px;
        }

        .nav-links li a:hover {
            color: var(--neon-purple);
            background: rgba(255, 0, 255, 0.1);
            box-shadow: var(--glow-purple);
        }

        .nav-links li a[href="/contacts.html"] {
            color: var(--neon-cyan);
            background: rgba(0, 255, 255, 0.1);
            box-shadow: var(--glow-cyan);
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: var(--neon-cyan);
            transition: 0.3s;
        }

        .burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .burger.active span:nth-child(2) {
            opacity: 0;
        }

        .burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        main {
            margin-top: 80px;
            padding: 4rem 5%;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-contact {
            text-align: center;
            padding: 4rem 0;
            background: linear-gradient(45deg, rgba(255, 107, 0, 0.1), rgba(0, 255, 255, 0.1));
            border-radius: 20px;
            margin-bottom: 4rem;
            border: 1px solid var(--neon-orange);
        }

        .hero-contact h1 {
            font-size: 4rem;
            color: var(--neon-orange);
            text-shadow: var(--glow-orange);
            margin-bottom: 1rem;
        }

        .hero-contact p {
            font-size: 1.5rem;
            color: var(--text-gray);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .contact-form-section {
            background: rgba(255, 0, 255, 0.02);
            border: 1px solid var(--neon-purple);
            border-radius: 20px;
            padding: 3rem;
        }

        .contact-form-section h2 {
            font-size: 2.5rem;
            color: var(--neon-purple);
            text-shadow: var(--glow-purple);
            margin-bottom: 2rem;
            text-align: center;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            margin-bottom: 0.5rem;
            color: var(--neon-cyan);
            font-weight: bold;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid var(--neon-cyan);
            border-radius: 15px;
            color: var(--text-white);
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            box-shadow: var(--glow-cyan);
            transform: scale(1.02);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .submit-button {
            padding: 1rem 2rem;
            background: linear-gradient(45deg, var(--neon-purple), var(--neon-orange));
            color: var(--text-white);
            border: none;
            border-radius: 25px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 0, 255, 0.3);
        }

        .contact-info {
            background: rgba(0, 255, 255, 0.02);
            border: 1px solid var(--neon-cyan);
            border-radius: 20px;
            padding: 3rem;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            color: var(--neon-cyan);
            text-shadow: var(--glow-cyan);
            margin-bottom: 2rem;
            text-align: center;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
        }

        .contact-card h4 {
            color: var(--neon-orange);
            text-shadow: var(--glow-orange);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .contact-card p {
            color: var(--text-gray);
            margin-bottom: 0.5rem;
        }

        .contact-card a {
            color: var(--neon-purple);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .contact-card a:hover {
            color: var(--neon-cyan);
            text-shadow: var(--glow-cyan);
        }

        .team-section {
            background: rgba(255, 107, 0, 0.02);
            border: 1px solid var(--neon-orange);
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 4rem;
        }

        .team-section h2 {
            font-size: 2.5rem;
            color: var(--neon-orange);
            text-shadow: var(--glow-orange);
            text-align: center;
            margin-bottom: 3rem;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .team-member {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--neon-purple);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-5px);
            box-shadow: var(--glow-purple);
        }

        .team-member img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            border: 3px solid var(--neon-cyan);
            margin-bottom: 1rem;
            object-fit: cover;
        }

        .team-member h4 {
            color: var(--neon-cyan);
            margin-bottom: 0.5rem;
        }

        .team-member .role {
            color: var(--neon-orange);
            margin-bottom: 1rem;
            font-style: italic;
        }

        .team-member p {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .team-member a {
            color: var(--neon-purple);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .team-member a:hover {
            color: var(--neon-cyan);
        }

        .location-section {
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(255, 0, 255, 0.05));
            border: 1px solid var(--neon-cyan);
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
        }

        .location-section h2 {
            font-size: 2.5rem;
            color: var(--neon-cyan);
            text-shadow: var(--glow-cyan);
            margin-bottom: 2rem;
        }

        .location-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .location-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--neon-orange);
            border-radius: 15px;
            padding: 2rem;
        }

        .location-card h4 {
            color: var(--neon-orange);
            margin-bottom: 1rem;
        }

        .popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: var(--dark-bg);
            border: 2px solid var(--neon-cyan);
            border-radius: 15px;
            padding: 2rem;
            z-index: 10000;
            display: none;
            text-align: center;
            box-shadow: var(--glow-cyan);
        }

        .popup.show {
            display: block;
            animation: popupSlide 0.3s ease;
        }

        @keyframes popupSlide {
            from { transform: translate(-50%, -60%); opacity: 0; }
            to { transform: translate(-50%, -50%); opacity: 1; }
        }

        .popup h3 {
            color: var(--neon-cyan);
            margin-bottom: 1rem;
        }

        .popup button {
            padding: 0.5rem 1rem;
            background: linear-gradient(45deg, var(--neon-purple), var(--neon-orange));
            color: var(--text-white);
            border: none;
            border-radius: 25px;
            cursor: pointer;
            margin-top: 1rem;
        }

        footer {
            background: var(--darker-bg);
            border-top: 2px solid var(--neon-cyan);
            padding: 3rem 5%;
            text-align: center;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section h3 {
            color: var(--neon-purple);
            text-shadow: var(--glow-purple);
            margin-bottom: 1rem;
        }

        .footer-section a {
            color: var(--text-gray);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: all 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--neon-cyan);
            text-shadow: var(--glow-cyan);
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--dark-bg);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 2rem;
                transition: 0.3s;
            }

            .nav-links.active {
                left: 0;
            }

            .burger {
                display: flex;
            }

            .hero-contact h1 {
                font-size: 2.5rem;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            main {
                padding: 2rem 5%;
            }
        }

