* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-gradient: linear-gradient(135deg, #ff006e, #8338ec, #3a86ff);
            --secondary-gradient: linear-gradient(45deg, #fb5607, #ffbe0b, #8338ec);
            --dark-purple: #2a0845;
            --neon-pink: #ff10f0;
            --neon-cyan: #00f5ff;
            --space-gray: #1a1a2e;
            --accent-orange: #ff9500;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: var(--dark-purple);
            color: white;
            line-height: 1.6;
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1rem 2rem;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            background: var(--primary-gradient);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a:hover {
            color: var(--neon-pink);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--neon-pink);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: white;
            transition: 0.3s;
        }

        main {
            margin-top: 80px;
            padding: 4rem 2rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-hero {
            text-align: center;
            padding: 4rem 0;
            background: var(--primary-gradient);
            border-radius: 20px;
            margin-bottom: 4rem;
        }

        .page-hero h1 {
            font-size: clamp(3rem, 6vw, 5rem);
            margin-bottom: 1rem;
            font-weight: 900;
        }

        .page-hero p {
            font-size: 1.3rem;
            opacity: 0.9;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .contact-form-section {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 16, 240, 0.3);
        }

        .contact-form-section h2 {
            color: var(--neon-cyan);
            font-size: 2rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        .contact-form {
            display: grid;
            gap: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-group label {
            color: var(--neon-cyan);
            font-weight: bold;
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 1rem;
            border: 2px solid var(--neon-cyan);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--neon-pink);
            box-shadow: 0 0 20px rgba(255, 16, 240, 0.3);
            background: rgba(255, 255, 255, 0.15);
        }

        .form-group select {
            cursor: pointer;
        }

        .form-group select option {
            background: var(--dark-purple);
            color: white;
        }

        .form-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 1rem;
        }

        .submit-btn {
            padding: 1rem 2rem;
            background: var(--neon-cyan);
            color: var(--dark-purple);
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: var(--neon-pink);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 16, 240, 0.3);
        }

        .amazon-btn {
            padding: 1rem 2rem;
            background: var(--accent-orange);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .amazon-btn:hover {
            background: var(--neon-cyan);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
        }

        .contact-info-section {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .info-card {
            background: linear-gradient(45deg, rgba(255, 16, 240, 0.2), rgba(0, 245, 255, 0.2));
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid var(--neon-pink);
            transition: all 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(255, 16, 240, 0.3);
        }

        .info-card h3 {
            color: var(--accent-orange);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .info-card p {
            margin-bottom: 0.5rem;
        }

        .info-card a {
            color: var(--neon-cyan);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .info-card a:hover {
            color: var(--neon-pink);
        }

        .office-hours {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid var(--accent-orange);
        }

        .office-hours h3 {
            color: var(--accent-orange);
            margin-bottom: 1rem;
            text-align: center;
        }

        .hours-grid {
            display: grid;
            gap: 0.5rem;
        }

        .hours-row {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .hours-row:last-child {
            border-bottom: none;
        }

        .day {
            font-weight: bold;
            color: var(--neon-cyan);
        }

        .time {
            color: white;
        }

        .departments {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid var(--neon-cyan);
            margin-bottom: 4rem;
        }

        .departments h2 {
            color: var(--neon-cyan);
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: center;
        }

        .departments-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .department-card {
            background: linear-gradient(135deg, rgba(0, 245, 255, 0.2), rgba(255, 149, 0, 0.2));
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid var(--neon-cyan);
            text-align: center;
            transition: all 0.3s ease;
        }

        .department-card:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 245, 255, 0.4);
        }

        .department-card h3 {
            color: var(--neon-pink);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .department-card p {
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .department-contact {
            color: var(--accent-orange);
            font-weight: bold;
        }

        .location-map {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid var(--accent-orange);
            margin-bottom: 4rem;
            text-align: center;
        }

        .location-map h2 {
            color: var(--accent-orange);
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }

        .address-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .address-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: 15px;
            border: 1px solid var(--neon-pink);
        }

        .address-card h4 {
            color: var(--neon-pink);
            margin-bottom: 1rem;
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
        }

        .modal-content {
            background: var(--primary-gradient);
            margin: 15% auto;
            padding: 2rem;
            border-radius: 20px;
            width: 80%;
            max-width: 400px;
            text-align: center;
            position: relative;
            animation: slideIn 0.3s ease;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .close {
            position: absolute;
            right: 1rem;
            top: 1rem;
            font-size: 2rem;
            cursor: pointer;
            color: white;
        }

        .modal h3 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        footer {
            background: var(--dark-purple);
            padding: 3rem 2rem 2rem;
            text-align: center;
            border-top: 1px solid rgba(255, 16, 240, 0.3);
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: var(--neon-pink);
            margin-bottom: 1rem;
        }

        .footer-section a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--neon-pink);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            color: rgba(255, 255, 255, 0.7);
        }

        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--space-gray);
                flex-direction: column;
                justify-content: start;
                align-items: center;
                padding-top: 3rem;
                transition: left 0.3s ease;
            }

            nav ul.active {
                left: 0;
            }

            .burger {
                display: flex;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .form-actions {
                flex-direction: column;
                align-items: center;
            }

            .departments-grid,
            .address-info {
                grid-template-columns: 1fr;
            }
        }

