* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333333;
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background-color: #1a3a5f;
            color: white;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            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;
            color: white;
            text-decoration: none;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 25px;
        }
        
        .nav-menu a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: #e74c3c;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        main {
            margin-top: 70px;
            padding: 60px 0;
        }
        
        .page-header {
            background: linear-gradient(rgba(26, 58, 95, 0.8), rgba(26, 58, 95, 0.8)), url('../img/21.webp');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 80px 20px;
        }
        
        .page-header h1 {
            font-size: 42px;
            margin-bottom: 15px;
        }
        
        .page-header p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .cookie-content {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 40px;
            margin: 40px auto;
            max-width: 900px;
        }
        
        .cookie-section {
            margin-bottom: 30px;
        }
        
        .cookie-section h2 {
            font-size: 28px;
            color: #1a3a5f;
            margin-bottom: 15px;
        }
        
        .cookie-section h3 {
            font-size: 22px;
            color: #1a3a5f;
            margin: 20px 0 10px;
        }
        
        .cookie-section p {
            margin-bottom: 15px;
        }
        
        .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(250px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }
        
        .cookie-type {
            background-color: #f9f9f9;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .cookie-type h4 {
            font-size: 20px;
            color: #1a3a5f;
            margin-bottom: 10px;
        }
        
        .cookie-type p {
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .cookie-examples {
            background-color: #f0f0f0;
            border-radius: 5px;
            padding: 10px;
            font-size: 13px;
            color: #666;
        }
        
        .cookie-examples strong {
            color: #1a3a5f;
        }
        
        footer {
            background-color: #1a3a5f;
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #f39c12;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #f39c12;
        }
        
        .contact-info p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: #f39c12;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .cookie-popup {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 1001;
            transform: translateY(150%);
            transition: transform 0.3s ease;
        }
        
        .cookie-popup.show {
            transform: translateY(0);
        }
        
        .cookie-content {
            flex: 1;
        }
        
        .cookie-content p {
            margin-bottom: 10px;
            font-size: 14px;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 16px;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }
        
        .cookie-accept {
            background-color: #1a3a5f;
            color: white;
        }
        
        .cookie-accept:hover {
            background-color: #0d2340;
        }
        
        .cookie-decline {
            background-color: #e74c3c;
            color: white;
        }
        
        .cookie-decline:hover {
            background-color: #c0392b;
        }
        
        @media (max-width: 992px) {
            .page-header h1 {
                font-size: 36px;
            }
            
            .cookie-content {
                padding: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: #1a3a5f;
                flex-direction: column;
                align-items: center;
                justify-content: start;
                padding-top: 50px;
                transition: left 0.3s ease;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .page-header {
                padding: 60px 20px;
            }
            
            .page-header h1 {
                font-size: 30px;
            }
            
            .cookie-content {
                padding: 20px;
            }
            
            .cookie-section h2 {
                font-size: 24px;
            }
            
            .cookie-section h3 {
                font-size: 20px;
            }
            
            .cookie-types {
                grid-template-columns: 1fr;
            }
            
            .cookie-popup {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-buttons {
                margin-top: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .page-header h1 {
                font-size: 24px;
            }
            
            .page-header p {
                font-size: 16px;
            }
            
            main {
                padding: 40px 0;
            }
            
            .cookie-content {
                margin: 20px auto;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .contact-info p {
                justify-content: center;
            }
        }

