* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
        }
        
        body {
            background-color: #F5F5F5;
            color: #212121;
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header стилове */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #212121;
            color: #F5F5F5;
            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 20px;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #F5F5F5;
            text-decoration: none;
        }
        
        .logo span {
            color: #D32F2F;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: #F5F5F5;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 16px;
        }
        
        nav ul li a:hover {
            color: #D32F2F;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: #F5F5F5;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        /* Main стилове */
        main {
            padding-top: 100px;
            padding-bottom: 50px;
        }
        
        .cookie-content {
            background-color: #F5F5F5;
            padding: 50px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-title h1 {
            font-size: 36px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #212121;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background-color: #D32F2F;
        }
        
        .cookie-section {
            background-color: #FFFFFF;
            border-radius: 4px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .cookie-section h2 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #212121;
            border-bottom: 2px solid #D32F2F;
            padding-bottom: 10px;
        }
        
        .cookie-section h3 {
            font-size: 20px;
            margin: 20px 0 10px;
            color: #424242;
        }
        
        .cookie-section p {
            margin-bottom: 15px;
            color: #424242;
        }
        
        .cookie-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .cookie-section li {
            margin-bottom: 10px;
            color: #424242;
        }
        
        .cookie-types {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .cookie-type {
            background-color: #F5F5F5;
            border-radius: 4px;
            padding: 20px;
            border-left: 4px solid #D32F2F;
        }
        
        .cookie-type h4 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #212121;
        }
        
        .cookie-type p {
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .cookie-examples {
            margin-top: 10px;
            font-size: 14px;
            color: #616161;
        }
        
        /* Footer */
        footer {
            background-color: #212121;
            color: #F5F5F5;
            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 {
            font-size: 20px;
            margin-bottom: 20px;
            text-transform: uppercase;
            color: #FFC107;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #F5F5F5;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: #D32F2F;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(245, 245, 245, 0.1);
            font-size: 14px;
        }
        
        /* Адаптивност */
        @media (max-width: 768px) {
            nav ul {
                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 ul.show {
                transform: translateY(0);
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .burger {
                display: block;
                z-index: 1000;
            }
            
            .section-title h1 {
                font-size: 28px;
            }
            
            .cookie-section {
                padding: 20px;
            }
            
            .cookie-section h2 {
                font-size: 20px;
            }
            
            .cookie-section h3 {
                font-size: 18px;
            }
            
            .cookie-types {
                grid-template-columns: 1fr;
            }
        }

