* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Narrow', sans-serif;
            text-transform: uppercase;
        }
        
        body {
            background-color: #e0e0e0;
            color: #212121;
            line-height: 1.6;
            padding-top: 80px;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #d32f2f;
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #ffffff;
            text-decoration: none;
            letter-spacing: 2px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .nav-menu a:hover {
            color: #ffcdd2;
            border-bottom: 2px solid #ffcdd2;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: #ffffff;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        /* Main Content */
        main {
            padding: 50px 0;
            background-color: #f5f5f5;
        }
        
        .page-title {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #d32f2f;
            text-align: center;
            letter-spacing: 2px;
        }
        
        .cookie-content {
            background-color: #ffffff;
            padding: 40px;
            border: 3px solid #d32f2f;
        }
        
        .cookie-section {
            margin-bottom: 30px;
        }
        
        .cookie-section h2 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #d32f2f;
        }
        
        .cookie-section h3 {
            font-size: 1.4rem;
            margin: 20px 0 10px;
            color: #212121;
        }
        
        .cookie-section p {
            margin-bottom: 15px;
            text-align: justify;
        }
        
        .cookie-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .cookie-section li {
            margin-bottom: 10px;
        }
        
        .cookie-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .cookie-type {
            background-color: #f5f5f5;
            border: 2px solid #d32f2f;
            padding: 20px;
        }
        
        .cookie-type h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #d32f2f;
        }
        
        /* Footer */
        footer {
            background-color: #d32f2f;
            color: #ffffff;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            margin-bottom: 20px;
            font-size: 1.3rem;
            border-bottom: 2px solid #ffffff;
            padding-bottom: 10px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: #ffcdd2;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: #d32f2f;
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 50px;
                transition: left 0.5s ease;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .cookie-content {
                padding: 20px;
            }
        }

