* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f8f8;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #fff;
            color: #333;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 300;
            color: #333;
            text-transform: uppercase;
            letter-spacing: 4px;
        }
        
        .nav-list {
            display: flex;
            list-style: none;
        }
        
        .nav-list li {
            margin-left: 30px;
        }
        
        .nav-list a {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s;
        }
        
        .nav-list a:hover {
            color: #4a90e2;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger span {
            display: block;
            width: 25px;
            height: 2px;
            background-color: #333;
            margin: 6px 0;
            transition: all 0.3s;
        }
        
        main {
            padding-top: 100px;
            padding-bottom: 50px;
        }
        
        .privacy-content {
            background-color: #fff;
            padding: 60px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        h1 {
            font-size: 32px;
            font-weight: 300;
            margin-bottom: 40px;
            color: #333;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        h2 {
            font-size: 24px;
            font-weight: 400;
            margin: 30px 0 20px;
            color: #333;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        p {
            margin-bottom: 20px;
            color: #555;
            line-height: 1.8;
        }
        
        ul {
            margin-bottom: 20px;
            padding-left: 20px;
        }
        
        li {
            margin-bottom: 12px;
            color: #555;
            line-height: 1.8;
        }
        
        .footer {
            background-color: #222;
            color: #ccc;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-bottom: 20px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #4a90e2;
        }
        
        .footer-contact p {
            margin-bottom: 12px;
            font-size: 14px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            font-size: 13px;
        }
        
        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-list {
                position: fixed;
                top: 60px;
                left: 0;
                width: 100%;
                background-color: #fff;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s;
                z-index: 999;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }
            
            .nav-list.active {
                transform: translateY(0);
            }
            
            .nav-list li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
        }

