/* Стили CSS */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background-color: #F1F7ED;
            color: #333333;
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header стили */
        header {
            background-color: #2A2D3A;
            color: #fff;
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            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;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #A8DADC;
            text-decoration: none;
            letter-spacing: 1px;
        }

        .logo:hover {
            color: #F76C6C;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: #A8DADC;
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: #fff;
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        /* Main стили */
        main {
            padding-top: 80px;
            min-height: 100vh;
        }

        .cookie-content {
            background-color: #fff;
            border-radius: 10px;
            padding: 40px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .page-title {
            font-size: 36px;
            color: #2A2D3A;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        .page-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #F76C6C;
        }

        .cookie-section {
            margin-bottom: 30px;
        }

        .cookie-section h2 {
            font-size: 24px;
            color: #2A2D3A;
            margin-bottom: 15px;
        }

        .cookie-section h3 {
            font-size: 20px;
            color: #2A2D3A;
            margin: 20px 0 10px;
        }

        .cookie-section p {
            margin-bottom: 15px;
        }

        .cookie-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .cookie-section li {
            margin-bottom: 8px;
        }

        .highlight {
            background-color: #F1F7ED;
            padding: 15px;
            border-radius: 5px;
            border-left: 4px solid #F76C6C;
            margin: 20px 0;
        }

        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }

        .cookie-table th, .cookie-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }

        .cookie-table th {
            background-color: #2A2D3A;
            color: #fff;
        }

        .cookie-table tr:nth-child(even) {
            background-color: #f2f2f2;
        }

        .cookie-table tr:hover {
            background-color: #F1F7ED;
        }

        /* Footer */
        footer {
            background-color: #2A2D3A;
            color: #fff;
            padding: 50px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #A8DADC;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: #A8DADC;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .burger {
                display: block;
            }

            nav ul {
                position: fixed;
                top: 70px;
                right: 0;
                height: calc(100vh - 70px);
                width: 250px;
                background-color: #2A2D3A;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transform: translateX(100%);
                transition: transform 0.5s ease;
            }

            nav ul.active {
                transform: translateX(0);
            }

            nav ul li {
                margin: 15px 0;
            }

            .cookie-content {
                padding: 20px;
            }

            .cookie-table {
                font-size: 14px;
            }

            .cookie-table th, .cookie-table td {
                padding: 8px 10px;
            }
        }

