* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            color: white;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            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;
            background: linear-gradient(45deg, #8B5CF6, #EC4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-links a:hover {
            color: #8B5CF6;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: linear-gradient(45deg, #8B5CF6, #EC4899);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        
        .burger span {
            width: 25px;
            height: 3px;
            background: white;
            transition: all 0.3s ease;
        }
        
        main {
            margin-top: 80px;
            padding: 5rem 5%;
        }
        
        .page-hero {
            text-align: center;
            padding: 3rem 0;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
            border-radius: 20px;
            margin-bottom: 4rem;
        }
        
        .page-hero h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #8B5CF6, #EC4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .page-hero p {
            font-size: 1.3rem;
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .content-section {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .contact-main {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }
        
        .contact-form-section {
            background: rgba(139, 92, 246, 0.1);
            border-radius: 20px;
            padding: 3rem;
            border: 1px solid rgba(139, 92, 246, 0.2);
        }
        
        .contact-form-section h2 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: #8B5CF6;
        }
        
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
        }
        
        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: bold;
            color: #EC4899;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 1rem;
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.05);
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #8B5CF6;
            box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
        }
        
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .submit-btn {
            padding: 1rem 2rem;
            background: linear-gradient(45deg, #8B5CF6, #EC4899);
            border: none;
            border-radius: 10px;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
        }
        
        .contact-info {
            background: rgba(236, 72, 153, 0.1);
            border-radius: 20px;
            padding: 3rem;
            border: 1px solid rgba(236, 72, 153, 0.2);
        }
        
        .contact-info h2 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: #EC4899;
        }
        
        .info-item {
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .info-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(236, 72, 153, 0.1);
        }
        
        .info-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #10B981;
        }
        
        .info-item h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #10B981;
        }
        
        .info-item p {
            opacity: 0.8;
            line-height: 1.6;
        }
        
        .office-locations {
            background: rgba(16, 185, 129, 0.1);
            border-radius: 20px;
            padding: 4rem 2rem;
            margin: 4rem 0;
        }
        
        .office-locations h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #10B981;
        }
        
        .offices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .office-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(16, 185, 129, 0.2);
        }
        
        .office-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(16, 185, 129, 0.2);
        }
        
        .office-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #10B981;
        }
        
        .office-address {
            margin-bottom: 1rem;
            opacity: 0.8;
            line-height: 1.6;
        }
        
        .office-contact {
            font-size: 0.9rem;
            opacity: 0.7;
        }
        
        .departments {
            background: rgba(59, 130, 246, 0.1);
            border-radius: 20px;
            padding: 4rem 2rem;
            margin: 4rem 0;
        }
        
        .departments h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #3B82F6;
        }
        
        .departments-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .department-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 2rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }
        
        .department-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
        }
        
        .department-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #3B82F6;
            text-align: center;
        }
        
        .department-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #3B82F6;
            text-align: center;
        }
        
        .department-card p {
            opacity: 0.8;
            line-height: 1.5;
            margin-bottom: 1rem;
        }
        
        .department-contact {
            font-size: 0.9rem;
            opacity: 0.7;
            text-align: center;
        }
        
        .social-media {
            background: linear-gradient(45deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
            border-radius: 20px;
            padding: 4rem 2rem;
            text-align: center;
            margin: 4rem 0;
        }
        
        .social-media h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            background: linear-gradient(45deg, #8B5CF6, #EC4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .amazon-link {
            display: inline-block;
            padding: 1rem 3rem;
            background: linear-gradient(45deg, #EC4899, #8B5CF6);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
            margin-top: 2rem;
        }
        
        .amazon-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
        }
        
        footer {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 3rem 5% 1rem;
            text-align: center;
            border-top: 1px solid rgba(139, 92, 246, 0.2);
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-section h3 {
            color: #EC4899;
            margin-bottom: 1rem;
        }
        
        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .footer-section a:hover {
            color: #8B5CF6;
        }
        
        .popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 2rem;
            border-radius: 20px;
            border: 2px solid #8B5CF6;
            z-index: 20000;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .popup.show {
            transform: translate(-50%, -50%) scale(1);
        }
        
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 19000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .popup-overlay.show {
            opacity: 1;
            visibility: visible;
        }
        
        @media (max-width: 768px) {
            .burger {
                display: flex;
            }
            
            .nav-links {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(26, 26, 46, 0.98);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 2rem;
                transition: right 0.3s ease;
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .page-hero h1 {
                font-size: 2.5rem;
            }
            
            .contact-main {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .contact-form-section,
            .contact-info {
                padding: 2rem;
            }
            
            .offices-grid,
            .departments-grid {
                grid-template-columns: 1fr;
            }
        }

