* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #374151;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 24px;
        }
        
        .logo {
            font-size: 32px;
            font-weight: bold;
            background: linear-gradient(135deg, #7A5AF8, #FF6AD5);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 32px;
        }
        
        nav a {
            text-decoration: none;
            color: #374151;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        nav a:hover {
            color: #7A5AF8;
        }
        
        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        
        .burger-line {
            width: 24px;
            height: 3px;
            background: #374151;
        }
        
        .mobile-menu {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background: white;
            padding: 24px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
        }
        
        .mobile-menu ul {
            flex-direction: column;
            gap: 16px;
            list-style: none;
        }

        .mobile-menu ul a{
            text-decoration: none;
            color: #374151;
            font-size: 20px;
        }
        main {
            margin-top: 80px;
        }
        
        .page-hero {
            background: linear-gradient(135deg, #7A5AF8 0%, #FF6AD5 100%);
            color: white;
            padding: 96px 0;
            text-align: center;
        }
        
        .page-hero h1 {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 24px;
        }
        
        .contact-section {
            padding: 96px 0;
            background: #F9FAFB;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
        }
        
        .contact-form {
            background: white;
            padding: 48px;
            border-radius: 24px;
            box-shadow: 0 16px 64px rgba(0,0,0,0.1);
        }
        
        .form-group {
            margin-bottom: 24px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #374151;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 16px;
            border: 2px solid #E5E7EB;
            border-radius: 12px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #7A5AF8;
        }
        
        .submit-button {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #7A5AF8, #FF6AD5);
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(122, 90, 248, 0.3);
        }
        
        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 24px;
            color: #374151;
        }
        
        .contact-info p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .info-card {
            background: white;
            padding: 32px;
            border-radius: 16px;
            margin-bottom: 24px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
        }
        
        .info-card h4 {
            font-size: 1.3rem;
            margin-bottom: 16px;
            color: #7A5AF8;
        }
        
        .amazon-link {
            display: inline-block;
            margin-top: 24px;
            padding: 16px 32px;
            background: #FF6AD5;
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .amazon-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(255, 106, 213, 0.3);
        }
        
        .popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 24px 96px rgba(0,0,0,0.3);
            z-index: 3000;
            display: none;
            text-align: center;
        }
        
        .popup.show {
            display: block;
        }
        
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 2999;
            display: none;
        }
        
        .popup-overlay.show {
            display: block;
        }
        
        footer {
            background: #1F2937;
            color: white;
            padding: 48px 0;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .footer-section h4 {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: #FF6AD5;
        }
        
        .footer-section p,
        .footer-section a {
            color: #D1D5DB;
            text-decoration: none;
            margin-bottom: 8px;
            display: block;
        }
        
        .footer-section a:hover {
            color: #7A5AF8;
        }
        
        @media (max-width: 768px) {
            nav {
                display: none;
            }
            
            .burger-menu {
                display: flex;
            }
            
            .page-hero h1 {
                font-size: 2.5rem;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }

