* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #ffffff;
            background: linear-gradient(135deg, #0a0a1f 0%, #1a0d2e 25%, #2d1b69 50%, #0f0f23 75%, #000000 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(10, 10, 31, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 1px solid rgba(0, 255, 157, 0.2);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #00ff9d;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .nav-menu a:hover, .nav-menu a.active {
            color: #00ff9d;
            background: rgba(0, 255, 157, 0.1);
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: #00ff9d;
            margin: 3px 0;
            transition: 0.3s;
        }

        main {
            margin-top: 80px;
            padding: 100px 0;
        }

        .page-hero {
            text-align: center;
            margin-bottom: 100px;
            background: linear-gradient(45deg, rgba(45, 27, 105, 0.4), rgba(10, 10, 31, 0.8));
            padding: 100px 0;
            border-radius: 30px;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('../img/21.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.2;
            z-index: -1;
        }

        .page-hero h1 {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 30px;
            background: linear-gradient(45deg, #00ff9d, #6c5ce7);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section {
            margin-bottom: 80px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 40px;
            color: #00ff9d;
            text-align: center;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 80px;
        }

        .contact-form-section {
            background: rgba(255, 255, 255, 0.05);
            padding: 50px;
            border-radius: 25px;
            border: 1px solid rgba(0, 255, 157, 0.1);
            backdrop-filter: blur(10px);
        }

        .contact-form-section h3 {
            color: #00ff9d;
            font-size: 1.8rem;
            margin-bottom: 30px;
            text-align: center;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 8px;
            font-weight: 600;
        }

        .contact-form input,
        .contact-form textarea,
        .contact-form select {
            padding: 15px 20px;
            border: none;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            font-size: 1rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 255, 157, 0.2);
            transition: all 0.3s ease;
        }

        .contact-form input:focus,
        .contact-form textarea:focus,
        .contact-form select:focus {
            outline: none;
            border-color: #00ff9d;
            box-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .submit-btn {
            background: linear-gradient(45deg, #6c5ce7, #00ff9d);
            color: #ffffff;
            padding: 18px 30px;
            border: none;
            border-radius: 25px;
            font-weight: 700;
            cursor: pointer;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(108, 92, 231, 0.4);
        }

        .amazon-link {
            display: block;
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            color: #ffffff;
            padding: 15px 25px;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 700;
            text-align: center;
            margin-top: 20px;
            transition: all 0.3s ease;
        }

        .amazon-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(247, 147, 30, 0.4);
        }

        .contact-info-section {
            background: linear-gradient(45deg, rgba(26, 13, 46, 0.8), rgba(15, 15, 35, 0.9));
            padding: 50px;
            border-radius: 25px;
        }

        .contact-info-section h3 {
            color: #00ff9d;
            font-size: 1.8rem;
            margin-bottom: 30px;
            text-align: center;
        }

        .info-cards {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .info-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid rgba(0, 255, 157, 0.1);
            transition: all 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-5px);
            border-color: #00ff9d;
            box-shadow: 0 15px 30px rgba(0, 255, 157, 0.1);
        }

        .info-card h4 {
            color: #00ff9d;
            font-size: 1.3rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .info-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 5px;
        }

        .info-card a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .info-card a:hover {
            color: #00ff9d;
        }

        .departments-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }

        .department-card {
            background: rgba(255, 255, 255, 0.03);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(0, 255, 157, 0.1);
            backdrop-filter: blur(10px);
            text-align: center;
            transition: all 0.3s ease;
        }

        .department-card:hover {
            transform: translateY(-5px);
            border-color: #00ff9d;
            box-shadow: 0 20px 40px rgba(0, 255, 157, 0.2);
        }

        .department-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }

        .department-card h4 {
            color: #00ff9d;
            font-size: 1.4rem;
            margin-bottom: 15px;
        }

        .department-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .department-contact {
            color: #ffffff;
            font-weight: 600;
        }

        .location-section {
            background: rgba(255, 255, 255, 0.03);
            padding: 60px 40px;
            border-radius: 25px;
            text-align: center;
            margin-bottom: 80px;
        }

        .location-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .location-content h3 {
            color: #00ff9d;
            font-size: 2rem;
            margin-bottom: 30px;
        }

        .address {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .map-placeholder {
            width: 100%;
            height: 300px;
            background: linear-gradient(45deg, rgba(108, 92, 231, 0.3), rgba(0, 255, 157, 0.2));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
            margin-top: 30px;
        }

        .hours-section {
            background: linear-gradient(135deg, rgba(45, 27, 105, 0.6), rgba(26, 13, 46, 0.8));
            padding: 60px 40px;
            border-radius: 25px;
        }

        .hours-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .hours-content h3 {
            color: #00ff9d;
            font-size: 2rem;
            margin-bottom: 40px;
        }

        .hours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .hours-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid rgba(0, 255, 157, 0.1);
        }

        .hours-card h4 {
            color: #ffffff;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .hours-card p {
            color: rgba(255, 255, 255, 0.8);
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            backdrop-filter: blur(10px);
        }

        .modal-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: linear-gradient(135deg, rgba(26, 13, 46, 0.95), rgba(15, 15, 35, 0.95));
            padding: 50px;
            border-radius: 25px;
            border: 1px solid rgba(0, 255, 157, 0.3);
            text-align: center;
            max-width: 500px;
            width: 90%;
        }

        .modal-content h3 {
            color: #00ff9d;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .modal-content p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .close-btn {
            background: #00ff9d;
            color: #000;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 255, 157, 0.4);
        }

        footer {
            background: linear-gradient(135deg, rgba(10, 10, 31, 0.95), rgba(0, 0, 0, 0.9));
            padding: 60px 0 30px;
            border-top: 1px solid rgba(0, 255, 157, 0.2);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            color: #00ff9d;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #00ff9d;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(10, 10, 31, 0.95);
                flex-direction: column;
                padding: 20px;
                gap: 10px;
            }

            .nav-menu.active {
                display: flex;
            }

            .burger {
                display: flex;
            }

            .page-hero h1 {
                font-size: 2.5rem;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .departments-grid {
                grid-template-columns: 1fr;
            }

            .hours-grid {
                grid-template-columns: 1fr;
            }

            .modal-content {
                padding: 30px;
                margin: 20px;
            }
        }

