* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #F5E6D3;
            color: #2C3E50;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(44, 62, 80, 0.95);
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #F5E6D3;
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        .logo:hover {
            color: #39FF14;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: #F5E6D3;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: #39FF14;
        }
        
        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .burger-menu span {
            width: 25px;
            height: 3px;
            background-color: #F5E6D3;
            margin: 3px 0;
            transition: 0.3s;
        }
        
        main {
            padding-top: 100px;
            padding-bottom: 50px;
        }
        
        .privacy-container {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 40px;
            margin-bottom: 40px;
        }
        
        .privacy-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .privacy-header h1 {
            font-size: 2.5rem;
            color: #2C3E50;
            margin-bottom: 15px;
        }
        
        .privacy-header p {
            font-size: 1.1rem;
            color: #666;
        }
        
        .privacy-section {
            margin-bottom: 30px;
        }
        
        .privacy-section h2 {
            font-size: 1.8rem;
            color: #D35400;
            margin-bottom: 15px;
            position: relative;
            padding-left: 20px;
        }
        
        .privacy-section h2:before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            height: 80%;
            width: 5px;
            background-color: #39FF14;
        }
        
        .privacy-section h3 {
            font-size: 1.4rem;
            color: #2C3E50;
            margin: 20px 0 10px;
        }
        
        .privacy-section p {
            margin-bottom: 15px;
        }
        
        .privacy-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .privacy-section li {
            margin-bottom: 8px;
        }
        
        .disclaimer {
            background-color: rgba(44, 62, 80, 0.9);
            color: #F5E6D3;
            padding: 20px;
            text-align: center;
            font-size: 0.9rem;
        }
        
        footer {
            background-color: #2C3E50;
            color: #F5E6D3;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #39FF14;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #F5E6D3;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: #39FF14;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(245, 230, 211, 0.2);
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: flex;
                position: fixed;
                top: -100%;
                right: 0;
                width: 100%;
                height: 100%;
                flex-direction: column;
            }

            nav ul.active{
                top: 65px;
                background-color: #2C3E50;
            }
            
            .burger-menu {
                display: flex;
            }
            
            .privacy-header h1 {
                font-size: 2rem;
            }
            
            .privacy-section h2 {
                font-size: 1.5rem;
            }
            
            .footer-content {
                flex-direction: column;
            }
        }

