         /* Modern E-commerce Layout */
        :root {
            --primary: #1a237e;
            --primary-light: #534bae;
            --primary-dark: #000051;
            --secondary: #00b0ff;
            --accent: #ff4081;
            --success: #00c853;
            --warning: #ff9100;
            --light: #f5f5f5;
            --dark: #212121;
            --gray: #757575;
            --light-gray: #f0f0f0;
            --border: #e0e0e0;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
            --shadow-footer: 0 -5px 25px rgba(0, 0, 0, 0.1);
            --radius: 12px;
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background: #f8fafc;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Simple Announcement Bar */
        .announcement-bar {
            background: var(--primary);
            color: white;
            padding: 8px 0;
            text-align: center;
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* Simple Header */
        .simple-header {
            background: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        /* Logo - Text Only */
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-text {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
            position: relative;
            padding-left: 15px;
        }

        .logo-text::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 30px;
            background: linear-gradient(to bottom, var(--primary), var(--secondary));
            border-radius: 3px;
        }

        /* Simple Navigation */
        .simple-nav {
            display: flex;
            gap: 5px;
            flex: 1;
            justify-content: center;
        }

        .nav-link {
            padding: 12px 20px;
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 0.95rem;
            border-radius: var(--radius);
            transition: var(--transition);
            white-space: nowrap;
        }

        .nav-link:hover {
            background: var(--light);
            color: var(--primary);
        }

        .nav-link.active {
            background: var(--primary);
            color: white;
        }

        /* Header Actions */
        .header-actions-simple {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .action-btn {
            background: var(--light);
            border: none;
            padding: 10px 15px;
            border-radius: var(--radius);
            color: var(--dark);
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .action-btn:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

        .action-btn.whatsapp {
            background: #25D366;
            color: white;
        }

        .action-btn.whatsapp:hover {
            background: #128C7E;
        }

        /* Mobile Menu Button */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
            padding: 10px;
        }

        /* Mobile Navigation - FIXED */
        .mobile-nav-simple {
            display: none;
            background: white;
            padding: 0 20px;
            border-top: 1px solid var(--border);
            flex-direction: column;
            gap: 10px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
        }

        .mobile-nav-simple.active {
            display: flex;
            max-height: 500px;
            padding: 20px;
            animation: slideDown 0.3s ease-in-out;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Privacy Policy Hero */
        .privacy-hero {
            max-width: 1400px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .privacy-hero-container {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: var(--radius);
            padding: 80px 60px;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .privacy-hero-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('images/hdd-banner.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 1;
        }

        .privacy-hero-container > * {
            position: relative;
            z-index: 2;
        }

        .privacy-hero-title {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.2;
        }

        .privacy-hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Privacy Policy Content */
        .privacy-content {
            max-width: 1400px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .privacy-container {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            padding: 60px;
        }

        .policy-section {
            margin-bottom: 50px;
        }

        .policy-section:last-child {
            margin-bottom: 0;
        }

        .policy-section h2 {
            color: var(--primary);
            font-size: 1.8rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light);
            position: relative;
        }

        .policy-section h2::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 60px;
            height: 2px;
            background: var(--secondary);
        }

        .policy-section h3 {
            color: var(--primary-dark);
            font-size: 1.3rem;
            margin: 25px 0 15px;
        }

        .policy-section p {
            color: var(--gray);
            margin-bottom: 15px;
            line-height: 1.7;
            font-size: 1.05rem;
        }

        .policy-section ul {
            list-style: none;
            margin: 15px 0 25px 20px;
        }

        .policy-section ul li {
            color: var(--gray);
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
            line-height: 1.6;
        }

        .policy-section ul li::before {
            content: '•';
            color: var(--secondary);
            font-size: 1.5rem;
            position: absolute;
            left: 0;
            top: -2px;
        }

        .policy-section a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }

        .policy-section a:hover {
            color: var(--primary);
            text-decoration: underline;
        }

        .policy-update {
            background: var(--light);
            padding: 20px;
            border-radius: var(--radius);
            margin-top: 40px;
            border-left: 4px solid var(--secondary);
        }

        .policy-update h4 {
            color: var(--primary);
            margin-bottom: 10px;
        }

        /* Call to Action Section */
        .cta-section {
            max-width: 1400px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .cta-container {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            border-radius: var(--radius);
            padding: 80px 60px;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('images/hdd-banner.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 1;
        }

        .cta-container > * {
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .cta-subtitle {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .slider-btn {
            padding: 14px 32px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .slider-btn-primary {
            background: var(--accent);
            color: white;
        }

        .slider-btn-primary:hover {
            background: #e91e63;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 64, 129, 0.3);
        }

        .slider-btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .slider-btn-secondary:hover {
            background: white;
            color: var(--primary);
            transform: translateY(-3px);
        }

        /* Main Content Area */
        .main-content {
            flex: 1;
        }

        /* Footer */
        .main-footer {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            color: white;
            /*margin-top: 100px;*/
            position: relative;
            overflow: hidden;
        }

        .footer-wave {
            position: absolute;
            top: -100px;
            left: 0;
            width: 100%;
            height: 100px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23f8fafc' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
            background-size: cover;
            background-position: center;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 100px 20px 60px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .footer-column h3 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            color: white;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--secondary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .footer-links a:hover {
            color: var(--secondary);
            transform: translateX(5px);
        }

        .contact-info-footer {
            list-style: none;
        }

        .contact-info-footer li {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .contact-info-footer i {
            color: var(--secondary);
            margin-top: 5px;
            font-size: 1.1rem;
        }

        .newsletter {
            margin-top: 25px;
        }

        .newsletter-input-group {
            display: flex;
            gap: 10px;
        }

        .newsletter-input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--radius);
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transition: var(--transition);
            font-size: 0.95rem;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: var(--secondary);
            background: rgba(255, 255, 255, 0.15);
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }

        .footer-map {
            height: 108px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius);
            overflow: hidden;
            margin-top: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.7);
            flex-direction: column;
        }

        .footer-map i {
            font-size: 3rem;
            margin-bottom: 10px;
            opacity: 0.7;
        }

        /* Sub Footer */
        .sub-footer {
            background: rgba(0, 0, 0, 0.2);
            padding: 25px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 40px;
        }

        .sub-footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
        }

        .footer-payment-methods {
            display: flex;
            gap: 15px;
            align-items: center;
            flex-wrap: wrap;
        }

        .payment-method {
            width: 50px;
            height: 30px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .payment-method:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .footer-extra-links {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }

        .footer-extra-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .footer-extra-links a:hover {
            color: var(--secondary);
        }

        /* WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: var(--transition);
        }

        .whatsapp-float:hover {
            background: #128C7E;
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .simple-nav {
                display: none;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .privacy-container {
                padding: 40px;
            }
            
            .privacy-hero-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .privacy-hero-container {
                padding: 60px 30px;
            }
            
            .privacy-hero-title {
                font-size: 2rem;
            }
            
            .privacy-hero-subtitle {
                font-size: 1.1rem;
            }
            
            .privacy-container {
                padding: 30px;
            }
            
            .policy-section h2 {
                font-size: 1.6rem;
            }
            
            .cta-container {
                padding: 40px 30px;
            }
            
            .cta-title {
                font-size: 2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .sub-footer-content {
                flex-direction: column;
                text-align: center;
                gap: 25px;
            }
            
            .footer-extra-links {
                justify-content: center;
                gap: 20px;
            }
            
            .footer-payment-methods {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .header-content {
                padding: 12px 15px;
            }
            
            .logo-text {
                font-size: 1.4rem;
            }
            
            .action-btn span {
                display: none;
            }
            
            .action-btn {
                padding: 10px;
            }
            
            .logo-text::before {
                height: 25px;
                width: 4px;
            }
            
            .privacy-hero {
                margin: 20px auto;
            }
            
            .privacy-hero-container {
                padding: 40px 20px;
            }
            
            .privacy-hero-title {
                font-size: 1.8rem;
            }
            
            .privacy-container {
                padding: 20px;
            }
            
            .policy-section h2 {
                font-size: 1.4rem;
            }
            
            .cta-container {
                padding: 30px 20px;
            }
            
            .cta-title {
                font-size: 1.8rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 60px 20px 40px;
            }
            
            .newsletter-input-group {
                flex-direction: column;
            }
        }