   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #1a5632; /* Зеленый - цвет Португалии */
            --secondary-color: #c72c41; /* Красный - цвет Португалии */
            --accent-color: #f8c300;
            --light-color: #f8f9fa;
            --dark-color: #1e1e1e;
            --gray-color: #6c757d;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 4px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #134826;
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .btn-secondary {
            background-color: var(--secondary-color);
        }

        .btn-secondary:hover {
            background-color: #a02234;
        }

        .section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--dark-color);
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background-color: var(--primary-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Шапка */
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .logo i {
            margin-right: 10px;
            color: var(--secondary-color);
        }

        .nav-menu {
            display: flex;
        }

        .nav-menu li {
            margin-left: 30px;
        }

        .nav-menu a {
            font-weight: 600;
            color: var(--dark-color);
            transition: var(--transition);
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--primary-color);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            bottom: -5px;
            left: 0;
            transition: var(--transition);
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark-color);
            cursor: pointer;
        }

        /* Баннер */
        .banner {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('ban.png');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 150px 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .banner-content {
            max-width: 800px;
            padding: 0 20px;
        }

        .banner h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        }

        .banner p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        /* Список казино */
        .casinos-section {
            background-color: white;
        }

        .casino-list {
            display: flex;
            flex-direction: column;
            gap: 40px;
            max-width: 900px;
            margin: 0 auto;
        }

        .casino-item {
            display: flex;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .casino-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .casino-logo {
            flex: 0 0 250px;
            background-color: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .casino-logo img {
            max-width: 100%;
            max-height: 120px;
            object-fit: contain;
        }

        .casino-content {
            flex: 1;
            padding: 30px;
        }

        .casino-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .casino-name {
            font-size: 1.8rem;
            color: var(--primary-color);
            font-weight: 700;
        }

        .casino-rating {
            background-color: var(--accent-color);
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-weight: 700;
            display: flex;
            align-items: center;
        }

        .casino-rating i {
            margin-right: 5px;
        }

        .casino-features {
            margin-bottom: 25px;
        }

        .casino-features h4 {
            margin-bottom: 10px;
            color: var(--dark-color);
        }

        .casino-features ul {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
        }

        @media (max-width: 768px) {
            .casino-features ul {
                grid-template-columns: 1fr;
            }
        }

        .casino-features li {
            display: flex;
            align-items: center;
            color: var(--gray-color);
        }

        .casino-features i {
            color: var(--primary-color);
            margin-right: 10px;
            font-size: 0.9rem;
        }

        /* О нас */
        .about-section {
            background-color: #f8f9fa;
        }

        .about-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            font-size: 1.1rem;
        }

        .about-content p {
            margin-bottom: 20px;
        }

        /* FAQ */
        .faq-section {
            background-color: white;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 15px;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .faq-question {
            padding: 20px;
            background-color: #f8f9fa;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--dark-color);
            transition: var(--transition);
        }

        .faq-question:hover {
            background-color: #e9ecef;
        }

        .faq-question.active {
            background-color: var(--primary-color);
            color: white;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background-color: white;
        }

        .faq-answer.show {
            padding: 20px;
            max-height: 500px;
        }

        .faq-answer p {
            margin-bottom: 10px;
        }

        /* Ответственная игра */
        .responsible-gambling {
            background-color: #f8f9fa;
            text-align: center;
            padding: 60px 0;
        }

        .responsible-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .responsible-icon {
            font-size: 4rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .responsible-content h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--dark-color);
        }

        .responsible-content p {
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .responsible-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }

        .responsible-links a {
            display: flex;
            align-items: center;
            background-color: white;
            padding: 15px 25px;
            border-radius: 5px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .responsible-links a:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .responsible-links img {
            height: 40px;
            margin-right: 15px;
        }

        /* Футер */
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: white;
        }

        .footer-logo i {
            color: var(--secondary-color);
            margin-right: 10px;
        }

        .footer-about p {
            opacity: 0.8;
            margin-bottom: 20px;
        }

        .footer-links h4, .footer-legal h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h4::after, .footer-legal h4::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: var(--primary-color);
            bottom: 0;
            left: 0;
        }

        .footer-links ul li, .footer-legal ul li {
            margin-bottom: 10px;
        }

        .footer-links a, .footer-legal a {
            opacity: 0.8;
            transition: var(--transition);
        }

        .footer-links a:hover, .footer-legal a:hover {
            opacity: 1;
            color: var(--accent-color);
            padding-left: 5px;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
            font-size: 0.9rem;
        }

        /* Адаптивность */
        @media (max-width: 992px) {
            .banner h1 {
                font-size: 2.8rem;
            }
            
            .casino-item {
                flex-direction: column;
            }
            
            .casino-logo {
                flex: 0 0 auto;
                padding: 30px;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                box-shadow: var(--shadow);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
                z-index: 999;
            }

            .nav-menu.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .nav-menu li {
                margin: 15px 0;
            }

            .mobile-menu-btn {
                display: block;
            }

            .banner {
                padding: 120px 0;
            }

            .banner h1 {
                font-size: 2.3rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .responsible-links {
                flex-direction: column;
                align-items: center;
            }

            .responsible-links a {
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 576px) {
            .banner h1 {
                font-size: 2rem;
            }
            
            .banner p {
                font-size: 1rem;
            }
            
            .section {
                padding: 60px 0;
            }
        }
           * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #1a5632;
            --secondary-color: #c72c41;
            --accent-color: #f8c300;
            --light-color: #f8f9fa;
            --dark-color: #1e1e1e;
            --gray-color: #6c757d;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul, ol {
            padding-left: 20px;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 4px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #134826;
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .section {
            padding: 80px 0;
        }

        /* Шапка */
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .logo i {
            margin-right: 10px;
            color: var(--secondary-color);
        }

        .nav-menu {
            display: flex;
        }

        .nav-menu li {
            margin-left: 30px;
        }

        .nav-menu a {
            font-weight: 600;
            color: var(--dark-color);
            transition: var(--transition);
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--primary-color);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            bottom: -5px;
            left: 0;
            transition: var(--transition);
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark-color);
            cursor: pointer;
        }

        /* Контент политики */
        .policy-hero {
            background: linear-gradient(rgba(26, 86, 50, 0.9), rgba(26, 86, 50, 0.8)), url('ban.png');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 120px 0;
        }

        .policy-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .policy-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }

        .policy-content {
            background-color: white;
            padding: 60px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-top: -50px;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .policy-content {
                padding: 40px 20px;
            }
        }

        .policy-section {
            margin-bottom: 50px;
        }

        .policy-section h2 {
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }

        .policy-section h3 {
            color: var(--dark-color);
            margin: 25px 0 15px;
        }

        .policy-section p {
            margin-bottom: 15px;
        }

        .policy-section ul, .policy-section ol {
            margin-bottom: 20px;
        }

        .policy-section li {
            margin-bottom: 10px;
        }

        .last-updated {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 5px;
            border-left: 4px solid var(--primary-color);
            margin-top: 40px;
        }

        /* Футер */
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: white;
        }

        .footer-logo i {
            color: var(--secondary-color);
            margin-right: 10px;
        }

        .footer-about p {
            opacity: 0.8;
            margin-bottom: 20px;
        }

        .footer-links h4, .footer-legal h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h4::after, .footer-legal h4::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: var(--primary-color);
            bottom: 0;
            left: 0;
        }

        .footer-links ul li, .footer-legal ul li {
            margin-bottom: 10px;
        }

        .footer-links a, .footer-legal a {
            opacity: 0.8;
            transition: var(--transition);
        }

        .footer-links a:hover, .footer-legal a:hover {
            opacity: 1;
            color: var(--accent-color);
            padding-left: 5px;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
            font-size: 0.9rem;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                box-shadow: var(--shadow);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
                z-index: 999;
            }

            .nav-menu.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .nav-menu li {
                margin: 15px 0;
            }

            .mobile-menu-btn {
                display: block;
            }

            .policy-hero {
                padding: 80px 0;
            }

            .policy-hero h1 {
                font-size: 2.2rem;
            }
        }
         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #1a5632;
            --secondary-color: #c72c41;
            --accent-color: #f8c300;
            --light-color: #f8f9fa;
            --dark-color: #1e1e1e;
            --gray-color: #6c757d;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul, ol {
            padding-left: 20px;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 4px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #134826;
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .section {
            padding: 80px 0;
        }

        /* Шапка */
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .logo i {
            margin-right: 10px;
            color: var(--secondary-color);
        }

        .nav-menu {
            display: flex;
        }

        .nav-menu li {
            margin-left: 30px;
        }

        .nav-menu a {
            font-weight: 600;
            color: var(--dark-color);
            transition: var(--transition);
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--primary-color);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            bottom: -5px;
            left: 0;
            transition: var(--transition);
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark-color);
            cursor: pointer;
        }

        /* Контент политики */
        .policy-hero {
            background: linear-gradient(rgba(199, 44, 65, 0.9), rgba(199, 44, 65, 0.8)), url('ban.png');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 120px 0;
        }

        .policy-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .policy-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }

        .policy-content {
            background-color: white;
            padding: 60px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-top: -50px;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .policy-content {
                padding: 40px 20px;
            }
        }

        .policy-section {
            margin-bottom: 50px;
        }

        .policy-section h2 {
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }

        .policy-section h3 {
            color: var(--dark-color);
            margin: 25px 0 15px;
        }

        .policy-section p {
            margin-bottom: 15px;
        }

        .policy-section ul, .policy-section ol {
            margin-bottom: 20px;
        }

        .policy-section li {
            margin-bottom: 10px;
        }

        .warning-box {
            background-color: #fff3cd;
            border: 1px solid #ffeaa7;
            border-left: 4px solid var(--accent-color);
            padding: 20px;
            border-radius: 5px;
            margin: 30px 0;
        }

        .warning-box h4 {
            color: #856404;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .warning-box h4 i {
            margin-right: 10px;
        }

        .last-updated {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 5px;
            border-left: 4px solid var(--primary-color);
            margin-top: 40px;
        }

        /* Футер */
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: white;
        }

        .footer-logo i {
            color: var(--secondary-color);
            margin-right: 10px;
        }

        .footer-about p {
            opacity: 0.8;
            margin-bottom: 20px;
        }

        .footer-links h4, .footer-legal h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h4::after, .footer-legal h4::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: var(--primary-color);
            bottom: 0;
            left: 0;
        }

        .footer-links ul li, .footer-legal ul li {
            margin-bottom: 10px;
        }

        .footer-links a, .footer-legal a {
            opacity: 0.8;
            transition: var(--transition);
        }

        .footer-links a:hover, .footer-legal a:hover {
            opacity: 1;
            color: var(--accent-color);
            padding-left: 5px;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
            font-size: 0.9rem;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                box-shadow: var(--shadow);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
                z-index: 999;
            }

            .nav-menu.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .nav-menu li {
                margin: 15px 0;
            }

            .mobile-menu-btn {
                display: block;
            }

            .policy-hero {
                padding: 80px 0;
            }

            .policy-hero h1 {
                font-size: 2.2rem;
            }
        }
           * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #1a5632;
            --secondary-color: #c72c41;
            --accent-color: #f8c300;
            --light-color: #f8f9fa;
            --dark-color: #1e1e1e;
            --gray-color: #6c757d;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul, ol {
            padding-left: 20px;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 4px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #134826;
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .section {
            padding: 80px 0;
        }

        /* Шапка */
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .logo i {
            margin-right: 10px;
            color: var(--secondary-color);
        }

        .nav-menu {
            display: flex;
        }

        .nav-menu li {
            margin-left: 30px;
        }

        .nav-menu a {
            font-weight: 600;
            color: var(--dark-color);
            transition: var(--transition);
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--primary-color);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            bottom: -5px;
            left: 0;
            transition: var(--transition);
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark-color);
            cursor: pointer;
        }

        /* Контент политики */
        .policy-hero {
            background: linear-gradient(rgba(248, 195, 0, 0.9), rgba(248, 195, 0, 0.8)), url('ban.png');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 120px 0;
        }

        .policy-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .policy-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }

        .policy-content {
            background-color: white;
            padding: 60px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-top: -50px;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .policy-content {
                padding: 40px 20px;
            }
        }

        .policy-section {
            margin-bottom: 50px;
        }

        .policy-section h2 {
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }

        .policy-section h3 {
            color: var(--dark-color);
            margin: 25px 0 15px;
        }

        .policy-section p {
            margin-bottom: 15px;
        }

        .policy-section ul, .policy-section ol {
            margin-bottom: 20px;
        }

        .policy-section li {
            margin-bottom: 10px;
        }

        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }

        .cookie-table th, .cookie-table td {
            border: 1px solid #ddd;
            padding: 12px 15px;
            text-align: left;
        }

        .cookie-table th {
            background-color: #f8f9fa;
            font-weight: 600;
            color: var(--dark-color);
        }

        .cookie-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }

        .cookie-type {
            display: inline-block;
            padding: 3px 8px;
            border-radius: 3px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 5px;
        }

        .essential {
            background-color: #d4edda;
            color: #155724;
        }

        .functional {
            background-color: #d1ecf1;
            color: #0c5460;
        }

        .analytics {
            background-color: #fff3cd;
            color: #856404;
        }

        .marketing {
            background-color: #f8d7da;
            color: #721c24;
        }

        .cookie-controls {
            background-color: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
            border-left: 4px solid var(--accent-color);
        }

        .cookie-controls h3 {
            color: var(--primary-color);
            margin-top: 0;
        }

        .cookie-buttons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .last-updated {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 5px;
            border-left: 4px solid var(--primary-color);
            margin-top: 40px;
        }

        /* Футер */
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: white;
        }

        .footer-logo i {
            color: var(--secondary-color);
            margin-right: 10px;
        }

        .footer-about p {
            opacity: 0.8;
            margin-bottom: 20px;
        }

        .footer-links h4, .footer-legal h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h4::after, .footer-legal h4::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: var(--primary-color);
            bottom: 0;
            left: 0;
        }

        .footer-links ul li, .footer-legal ul li {
            margin-bottom: 10px;
        }

        .footer-links a, .footer-legal a {
            opacity: 0.8;
            transition: var(--transition);
        }

        .footer-links a:hover, .footer-legal a:hover {
            opacity: 1;
            color: var(--accent-color);
            padding-left: 5px;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
            font-size: 0.9rem;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                box-shadow: var(--shadow);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
                z-index: 999;
            }

            .nav-menu.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .nav-menu li {
                margin: 15px 0;
            }

            .mobile-menu-btn {
                display: block;
            }

            .policy-hero {
                padding: 80px 0;
            }

            .policy-hero h1 {
                font-size: 2.2rem;
            }

            .cookie-table {
                display: block;
                overflow-x: auto;
            }
        }