        :root {
            --primary: #0056b3;
            --secondary: #f8f9fa;
            --accent: #ff6b6b;
            --dark: #333;
            --light: #fff;
            --gray: #6c757d;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--secondary);
            color: var(--dark);
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styles */
        header {
            background-color: var(--light);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary);
        }

        .logo i {
            margin-right: 10px;
            color: var(--accent);
        }

        .nav-menu {
            display: flex;
            gap: 25px;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 1.1rem;
            position: relative;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: var(--primary);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-buttons {
            display: flex;
            gap: 15px;
        }

        .btn {
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--light);
        }

        .btn-primary:hover {
            background-color: #003d82;
        }

        .btn-outline {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: var(--light);
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            color: var(--primary);
            font-size: 1.2rem;
            transition: color 0.3s;
        }

        .social-icons a:hover {
            color: var(--accent);
        }

        /* Page Title Section */
        .page-title {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3') center/cover no-repeat;
            color: var(--light);
            padding: 60px 0;
            text-align: center;
        }

        .page-title h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .page-title p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Cookies Policy Section */
        .cookies-policy {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .section-title p {
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 800px;
            margin: 0 auto;
        }

        .cookies-content {
            background-color: var(--light);
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .cookies-s {
            margin-bottom: 40px;
        }

        .cookies-s:last-child {
            margin-bottom: 0;
        }

        .cookies-s h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .cookies-s h3 i {
            margin-right: 15px;
            color: var(--accent);
            font-size: 1.5rem;
        }

        .cookies-s p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .cookies-s ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .cookies-s li {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .cookies-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 1rem;
        }

        .cookies-table th,
        .cookies-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }

        .cookies-table th {
            background-color: var(--secondary);
            color: var(--primary);
            font-weight: 600;
        }

        .cookies-table tr:hover {
            background-color: #f5f5f5;
        }

        .cookie-type {
            display: inline-block;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-right: 5px;
        }

        .cookie-type.necessary {
            background-color: #e6f7ff;
            color: #0056b3;
        }

        .cookie-type.functional {
            background-color: #f6ffed;
            color: #52c41a;
        }

        .cookie-type.analytical {
            background-color: #fff7e6;
            color: #fa8c16;
        }

        .cookie-type.marketing {
            background-color: #f9f0ff;
            color: #722ed1;
        }

        .cookies-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 60px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--accent);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-col ul li a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #aaa;
        }



        /* Responsive */
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 20px;
            }

            .nav-menu {
                flex-wrap: wrap;
                justify-content: center;
            }

            .page-title h1 {
                font-size: 2.2rem;
            }

            .cookies-content {
                padding: 25px;
            }

            .cookies-s h3 {
                font-size: 1.5rem;
            }

            .cookies-table {
                font-size: 0.9rem;
            }

            .cookies-table th,
            .cookies-table td {
                padding: 8px 10px;
            }

            .cookies-buttons {
                flex-direction: column;
                align-items: center;
            }
        }