* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: #212121;
            background-color: #E0E0E0;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #212121;
            color: #FFFFFF;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #FFFFFF;
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-family: 'Arial Black', sans-serif;
        }
        
        .nav {
            display: flex;
            list-style: none;
        }
        
        .nav li {
            margin-left: 30px;
        }
        
        .nav a {
            color: #FFFFFF;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .nav a:hover {
            color: #FFC107;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: #FFFFFF;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        /* Content Styles */
        .content {
            padding: 100px 0 50px;
        }
        
        .page-header {
            background-color: #212121;
            color: #FFFFFF;
            padding: 60px 0;
            text-align: center;
        }
        
        .page-header h1 {
            font-size: 36px;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .page-header p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .cookie-content {
            background-color: #FFFFFF;
            border: 2px solid #212121;
            padding: 40px;
            margin: 30px 0;
        }
        
        .cookie-content h2 {
            font-size: 28px;
            color: #212121;
            margin: 30px 0 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cookie-content h3 {
            font-size: 22px;
            color: #212121;
            margin: 25px 0 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cookie-content p {
            margin-bottom: 15px;
            color: #424242;
        }
        
        .cookie-content ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .cookie-content li {
            margin-bottom: 10px;
            color: #424242;
        }
        
        .cookie-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .cookie-type {
            background-color: #F5F5F5;
            border: 2px solid #212121;
            padding: 20px;
        }
        
        .cookie-type h4 {
            font-size: 20px;
            color: #212121;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cookie-type p {
            color: #424242;
            font-size: 14px;
        }
        
        /* Footer Styles */
        footer {
            background-color: #000000;
            color: #FFFFFF;
            padding: 50px 0 30px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .footer-logo {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        
        .footer-logo h2 {
            font-size: 24px;
            color: #FFFFFF;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .footer-logo p {
            color: #BDBDBD;
            line-height: 1.6;
        }
        
        .footer-links {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        
        .footer-links h3 {
            font-size: 18px;
            color: #FFFFFF;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-links h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #D32F2F;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #BDBDBD;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #FFC107;
        }
        
        .footer-contact {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        
        .footer-contact h3 {
            font-size: 18px;
            color: #FFFFFF;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-contact h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #D32F2F;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .contact-item i {
            color: #FFC107;
            margin-right: 10px;
            margin-top: 5px;
        }
        
        .contact-item p {
            color: #BDBDBD;
            line-height: 1.6;
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-bottom p {
            color: #BDBDBD;
            font-size: 14px;
        }
        
        /* Cookie Banner Styles */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: #212121;
            color: #FFFFFF;
            padding: 20px;
            border: 2px solid #FFC107;
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 1000;
            transform: translateY(150%);
            transition: transform 0.5s ease;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 20px;
        }
        
        .cookie-text p {
            margin-bottom: 0;
            font-size: 14px;
            line-height: 1.5;
        }
        
        .cookie-text a {
            color: #FFC107;
            text-decoration: underline;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 15px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cookie-accept {
            background-color: #D32F2F;
            color: #FFFFFF;
            font-weight: bold;
        }
        
        .cookie-accept:hover {
            background-color: #FFFFFF;
            color: #212121;
        }
        
        .cookie-decline {
            background-color: transparent;
            color: #FFFFFF;
            border: 1px solid #FFFFFF;
        }
        
        .cookie-decline:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #212121;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                z-index: 999;
            }
            
            .nav.show {
                transform: translateY(0);
            }
            
            .nav li {
                margin: 10px 0;
            }
            
            .burger {
                display: block;
            }
            
            .page-header h1 {
                font-size: 28px;
            }
            
            .cookie-content {
                padding: 30px 20px;
            }
            
            .cookie-types {
                grid-template-columns: 1fr;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

