* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        :root {
            --primary: #FF6B6B;
            --secondary: #4ECDC4;
            --accent: #FFE66D;
            --bg: #F7F7F7;
            --text: #2B2D42;
            --text-light: #8D99AE;
            --white: #FFFFFF;
            --dark: #1A1A2E;
        }
        
        body {
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            padding-top: 80px;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--white);
            color: var(--text);
            padding: 15px 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            border-bottom: 3px solid var(--primary);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-decoration: none;
            color: var(--text);
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .logo::before {
            content: '◄';
            position: absolute;
            left: -15px;
            color: var(--primary);
        }
        
        .logo::after {
            content: '►';
            position: absolute;
            right: -15px;
            color: var(--primary);
        }
        
        .logo:hover {
            color: var(--primary);
        }
        
        .nav {
            display: flex;
        }
        
        .nav-list {
            display: flex;
            list-style: none;
        }
        
        .nav-item {
            margin-left: 25px;
        }
        
        .nav-link {
            color: var(--text);
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            position: relative;
            text-transform: uppercase;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--primary);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
        }
        
        .burger span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: var(--primary);
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        
        /* Privacy Policy Styles */
        .privacy {
            padding: 50px 0;
            background-color: var(--white);
            border-radius: 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 50px;
            border: 2px solid var(--primary);
            position: relative;
        }
        
        .privacy::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: repeating-linear-gradient(
                90deg,
                var(--primary),
                var(--primary) 10px,
                var(--secondary) 10px,
                var(--secondary) 20px
            );
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-title h1 {
            font-size: 36px;
            color: var(--text);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            text-transform: uppercase;
        }
        
        .section-title h1::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background-color: var(--primary);
            bottom: -10px;
            left: 25%;
        }
        
        .privacy-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .privacy-section {
            margin-bottom: 30px;
        }
        
        .privacy-section h2 {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            padding-left: 15px;
            text-transform: uppercase;
        }
        
        .privacy-section h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            height: 20px;
            width: 4px;
            background-color: var(--primary);
        }
        
        .privacy-section p {
            margin-bottom: 15px;
            color: var(--text-light);
            font-size: 18px;
        }
        
        .privacy-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
            color: var(--text-light);
        }
        
        .privacy-section li {
            margin-bottom: 10px;
        }
        
        .privacy-section strong {
            color: var(--text);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 50px 0 20px;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: repeating-linear-gradient(
                90deg,
                var(--primary),
                var(--primary) 10px,
                var(--secondary) 10px,
                var(--secondary) 20px
            );
        }
        
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        
        .footer-col {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        
        .footer-col h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            text-transform: uppercase;
            color: var(--accent);
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-link {
            margin-bottom: 10px;
        }
        
        .footer-link a {
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-link a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px dashed var(--text-light);
            font-size: 14px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--white);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
                border-bottom: 3px solid var(--primary);
            }
            
            .nav.show {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .nav-list {
                flex-direction: column;
                align-items: center;
            }
            
            .nav-item {
                margin: 10px 0;
            }
            
            .burger {
                display: flex;
            }
            
            .burger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .burger.active span:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
            
            .section-title h1 {
                font-size: 28px;
            }
            
            .privacy-section h2 {
                font-size: 20px;
            }
        }

