* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #00FFFF;
            --secondary-color: #FF006E;
            --accent-color: #9D00FF;
            --bg-dark: #0A0A0F;
            --bg-darker: #050508;
            --text-light: #FFFFFF;
            --text-muted: #B0B0B0;
            --gradient-1: linear-gradient(135deg, #00FFFF 0%, #FF006E 100%);
            --gradient-2: linear-gradient(45deg, #9D00FF 0%, #00FFFF 100%);
            --neon-glow: 0 0 20px currentColor;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid var(--primary-color);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            text-shadow: var(--neon-glow);
            letter-spacing: 2px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 1rem;
            border-radius: 25px;
        }

        .nav-links a:hover {
            color: var(--primary-color);
            background: rgba(0, 255, 255, 0.1);
            box-shadow: var(--neon-glow);
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: var(--primary-color);
            transition: 0.3s;
        }

        main {
            margin-top: 80px;
            padding: 4rem 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .hero-section {
            text-align: center;
            padding: 4rem 0;
            background: var(--gradient-1);
            margin-bottom: 4rem;
        }

        .hero-section h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--bg-darker);
            text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        }

        .hero-section p {
            font-size: 1.3rem;
            color: var(--bg-darker);
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .contact-form {
            background: rgba(0, 255, 255, 0.05);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid var(--primary-color);
        }

        .contact-form h2 {
            color: var(--primary-color);
            margin-bottom: 2rem;
            font-size: 2rem;
        }

        .form-grid {
            display: grid;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-group label {
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 1rem;
            border: 1px solid var(--accent-color);
            border-radius: 10px;
            background: rgba(157, 0, 255, 0.05);
            color: var(--text-light);
            font-size: 1rem;
            outline: none;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .submit-button {
            background: var(--secondary-color);
            color: var(--text-light);
            padding: 1rem 2rem;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .submit-button:hover {
            background: var(--primary-color);
            color: var(--bg-darker);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 0, 110, 0.4);
        }

        .contact-info {
            background: rgba(157, 0, 255, 0.1);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid var(--accent-color);
            height: fit-content;
        }

        .contact-info h2 {
            color: var(--accent-color);
            margin-bottom: 2rem;
            font-size: 2rem;
        }

        .info-item {
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: rgba(0, 255, 255, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(0, 255, 255, 0.2);
        }

        .info-item h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .info-item p {
            line-height: 1.7;
            margin-bottom: 0.5rem;
        }

        .info-item strong {
            color: var(--text-light);
        }

        .office-hours {
            background: var(--bg-darker);
            padding: 4rem 0;
            text-align: center;
        }

        .hours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 2rem auto;
        }

        .hours-card {
            background: rgba(255, 0, 110, 0.05);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid var(--secondary-color);
        }

        .hours-card h3 {
            color: var(--secondary-color);
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        .legal-section {
            margin: 4rem 0;
            background: rgba(0, 255, 255, 0.03);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(0, 255, 255, 0.1);
        }

        .legal-section h2 {
            color: var(--primary-color);
            margin-bottom: 2rem;
            font-size: 2.5rem;
            text-align: center;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .legal-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .legal-item {
            background: rgba(157, 0, 255, 0.1);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid var(--accent-color);
        }

        .legal-item h3 {
            color: var(--accent-color);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .legal-item p {
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .map-section {
            background: var(--gradient-2);
            padding: 4rem 0;
            text-align: center;
            color: var(--bg-darker);
        }

        .map-placeholder {
            background: rgba(255, 255, 255, 0.9);
            padding: 4rem;
            border-radius: 20px;
            margin: 2rem auto;
            max-width: 800px;
            font-size: 1.2rem;
            color: var(--bg-darker);
        }

        footer {
            background: var(--bg-darker);
            padding: 3rem 0 1rem;
            text-align: center;
            border-top: 1px solid var(--primary-color);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 1002;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background: var(--bg-darker);
            margin: 15% auto;
            padding: 3rem;
            border: 2px solid var(--primary-color);
            border-radius: 20px;
            width: 90%;
            max-width: 500px;
            text-align: center;
            animation: modalSlide 0.3s ease;
        }

        @keyframes modalSlide {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .close {
            color: var(--secondary-color);
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            line-height: 1;
        }

        .close:hover {
            color: var(--primary-color);
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--bg-darker);
                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;
            }

            .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);
            }

            .hero-section h1 {
                font-size: 2.5rem;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .contact-form,
            .contact-info {
                padding: 1rem;
            }

            .legal-section{
                padding: 1em;
            }
        }

        .glitch {
            animation: glitch 0.3s, blur 0.3s, hue 0.3s;
            animation-iteration-count: infinite;
            animation-direction: alternate-reverse;
        }

        @keyframes glitch {
            0% { transform: translate(0); }
            20% { transform: translate(-2px, 2px); }
            40% { transform: translate(-2px, -2px); }
            60% { transform: translate(2px, 2px); }
            80% { transform: translate(2px, -2px); }
            100% { transform: translate(0); }
        }

        @keyframes blur {
            0% { text-shadow: 0 0 0 var(--primary-color); }
            100% { text-shadow: 2px 0 0 var(--primary-color), -2px 0 0 var(--secondary-color); }
        }

        @keyframes hue {
            0% { filter: hue-rotate(0deg); }
            100% { filter: hue-rotate(360deg); }
        }

