* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #0f172a;
            color: #f8fafc;
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header e Navegação */
        header {
            background-color: #1e293b;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: #f0b90b;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo span {
            color: #f8fafc;
        }

        .logo i {
            font-size: 32px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav a {
            color: #cbd5e1;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 18px;
        }

        nav a:hover {
            color: #f0b90b;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #f8fafc;
            font-size: 24px;
            cursor: pointer;
        }

        /* Banner */
        .banner {
            background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9)), 
                        url('ban.png');
            background-size: cover;
            background-position: center;
            min-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 60px 20px;
        }

        .banner-content {
            max-width: 800px;
        }

        .banner h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #f0b90b;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .banner p {
            font-size: 1.4rem;
            color: #cbd5e1;
            margin-bottom: 30px;
        }

        .highlight {
            color: #f0b90b;
            font-weight: 700;
        }

        /* Seção de Casinos */
        .casinos-section {
            padding: 80px 0;
            background-color: #1e293b;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: #f0b90b;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 4px;
            background-color: #f0b90b;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .casinos-list {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .casino-card {
            background-color: #334155;
            border-radius: 15px;
            overflow: hidden;
            display: flex;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .casino-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }

        .casino-logo {
            flex: 0 0 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            background-color: #1e293b;
        }

        .casino-logo img {
            max-width: 100%;
            max-height: 120px;
            object-fit: contain;
        }

        .casino-info {
            flex: 1;
            padding: 30px;
        }

        .casino-name {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #f0b90b;
        }

        .casino-advantages {
            margin-bottom: 30px;
        }

        .advantage {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            color: #cbd5e1;
        }

        .advantage i {
            color: #f0b90b;
            margin-right: 10px;
            font-size: 18px;
        }

        .bonus-button {
            display: inline-block;
            background-color: #f0b90b;
            color: #1e293b;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .bonus-button:hover {
            background-color: #e6ac00;
            transform: scale(1.05);
        }

        /* Seção Sobre Nós */
        .about-section {
            padding: 80px 0;
            background-color: #0f172a;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #f0b90b;
        }

        .about-text p {
            margin-bottom: 20px;
            color: #cbd5e1;
            font-size: 1.1rem;
        }

        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Seção FAQ */
        .faq-section {
            padding: 80px 0;
            background-color: #1e293b;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            background-color: #334155;
        }

        .faq-question {
            padding: 20px;
            font-size: 1.3rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #f0b90b;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
            color: #cbd5e1;
        }

        .faq-answer.active {
            padding: 0 20px 20px;
            max-height: 300px;
        }

        /* Seção Jogo Responsável */
        .responsible-gambling {
            padding: 80px 0;
            background-color: #0f172a;
            text-align: center;
        }

        .age-restriction {
            font-size: 5rem;
            color: #f0b90b;
            margin-bottom: 30px;
        }

        .responsible-text {
            max-width: 800px;
            margin: 0 auto 40px;
            font-size: 1.2rem;
            color: #cbd5e1;
        }

        .responsible-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }

        .responsible-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s;
            width: 150px;
        }

        .responsible-link:hover {
            color: #f0b90b;
        }

        .responsible-link i {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        /* Footer */
        footer {
            background-color: #0a0f1c;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo {
            flex: 1;
            min-width: 250px;
        }

        .footer-logo .logo {
            margin-bottom: 20px;
        }

        .footer-links {
            flex: 2;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .footer-column {
            min-width: 150px;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #f0b90b;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 10px;
        }

        .footer-column a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: #f0b90b;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 0.9rem;
        }

        /* Responsividade */
        @media (max-width: 992px) {
            .banner h1 {
                font-size: 2.8rem;
            }
            
            .casino-card {
                flex-direction: column;
            }
            
            .casino-logo {
                flex: 0 0 auto;
                padding: 20px;
            }
            
            .about-content {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #1e293b;
                flex-direction: column;
                padding: 20px;
                text-align: center;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            }
            
            nav ul.active {
                display: flex;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .banner h1 {
                font-size: 2.2rem;
            }
            
            .banner p {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .banner h1 {
                font-size: 1.8rem;
            }
            
            .responsible-links {
                flex-direction: column;
                align-items: center;
            }
            
            .footer-content {
                flex-direction: column;
            }
        }
           * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #0f172a;
            color: #f8fafc;
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header e Navegação */
        header {
            background-color: #1e293b;
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: #f0b90b;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo span {
            color: #f8fafc;
        }

        .logo i {
            font-size: 32px;
        }

        .back-button {
            color: #cbd5e1;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 18px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .back-button:hover {
            color: #f0b90b;
        }

        /* Conteúdo Principal */
        .policy-container {
            min-height: calc(100vh - 200px);
            padding: 60px 0;
        }

        .policy-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .policy-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: #f0b90b;
        }

        .policy-header .last-updated {
            color: #94a3b8;
            font-size: 1rem;
        }

        .policy-content {
            background-color: #1e293b;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .policy-section {
            margin-bottom: 40px;
        }

        .policy-section h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #f0b90b;
            border-bottom: 2px solid #334155;
            padding-bottom: 10px;
        }

        .policy-section h3 {
            font-size: 1.4rem;
            margin: 25px 0 15px;
            color: #e2e8f0;
        }

        .policy-section p {
            margin-bottom: 15px;
            color: #cbd5e1;
        }

        .policy-section ul, .policy-section ol {
            margin-left: 20px;
            margin-bottom: 20px;
            color: #cbd5e1;
        }

        .policy-section li {
            margin-bottom: 10px;
        }

        .highlight-box {
            background-color: #0f172a;
            border-left: 4px solid #f0b90b;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }

        /* Footer */
        footer {
            background-color: #0a0f1c;
            padding: 40px 0 20px;
            margin-top: 60px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-logo {
            flex: 1;
            min-width: 250px;
        }

        .footer-logo .logo {
            margin-bottom: 20px;
        }

        .footer-links {
            flex: 2;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .footer-column {
            min-width: 150px;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #f0b90b;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 10px;
        }

        .footer-column a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: #f0b90b;
        }

        .current-page {
            color: #f0b90b !important;
            font-weight: 600;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 0.9rem;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .policy-header h1 {
                font-size: 2.2rem;
            }
            
            .policy-content {
                padding: 25px;
            }
            
            .footer-content {
                flex-direction: column;
            }
        }

        @media (max-width: 576px) {
            .policy-header h1 {
                font-size: 1.8rem;
            }
            
            .policy-section h2 {
                font-size: 1.5rem;
            }
        }
           * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #0f172a;
            color: #f8fafc;
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header e Navegação */
        header {
            background-color: #1e293b;
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: #f0b90b;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo span {
            color: #f8fafc;
        }

        .logo i {
            font-size: 32px;
        }

        .back-button {
            color: #cbd5e1;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 18px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .back-button:hover {
            color: #f0b90b;
        }

        /* Conteúdo Principal */
        .terms-container {
            min-height: calc(100vh - 200px);
            padding: 60px 0;
        }

        .terms-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .terms-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: #f0b90b;
        }

        .terms-header .last-updated {
            color: #94a3b8;
            font-size: 1rem;
        }

        .terms-content {
            background-color: #1e293b;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .terms-section {
            margin-bottom: 40px;
        }

        .terms-section h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #f0b90b;
            border-bottom: 2px solid #334155;
            padding-bottom: 10px;
        }

        .terms-section h3 {
            font-size: 1.4rem;
            margin: 25px 0 15px;
            color: #e2e8f0;
        }

        .terms-section p {
            margin-bottom: 15px;
            color: #cbd5e1;
        }

        .terms-section ul, .terms-section ol {
            margin-left: 20px;
            margin-bottom: 20px;
            color: #cbd5e1;
        }

        .terms-section li {
            margin-bottom: 10px;
        }

        .highlight-box {
            background-color: #0f172a;
            border-left: 4px solid #f0b90b;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }

        .warning-box {
            background-color: #1a202c;
            border-left: 4px solid #e53e3e;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }

        /* Footer */
        footer {
            background-color: #0a0f1c;
            padding: 40px 0 20px;
            margin-top: 60px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-logo {
            flex: 1;
            min-width: 250px;
        }

        .footer-logo .logo {
            margin-bottom: 20px;
        }

        .footer-links {
            flex: 2;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .footer-column {
            min-width: 150px;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #f0b90b;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 10px;
        }

        .footer-column a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: #f0b90b;
        }

        .current-page {
            color: #f0b90b !important;
            font-weight: 600;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 0.9rem;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .terms-header h1 {
                font-size: 2.2rem;
            }
            
            .terms-content {
                padding: 25px;
            }
            
            .footer-content {
                flex-direction: column;
            }
        }

        @media (max-width: 576px) {
            .terms-header h1 {
                font-size: 1.8rem;
            }
            
            .terms-section h2 {
                font-size: 1.5rem;
            }
        }
            * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #0f172a;
            color: #f8fafc;
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header e Navegação */
        header {
            background-color: #1e293b;
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: #f0b90b;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo span {
            color: #f8fafc;
        }

        .logo i {
            font-size: 32px;
        }

        .back-button {
            color: #cbd5e1;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 18px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .back-button:hover {
            color: #f0b90b;
        }

        /* Conteúdo Principal */
        .cookies-container {
            min-height: calc(100vh - 200px);
            padding: 60px 0;
        }

        .cookies-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .cookies-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: #f0b90b;
        }

        .cookies-header .last-updated {
            color: #94a3b8;
            font-size: 1rem;
        }

        .cookies-content {
            background-color: #1e293b;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .cookies-section {
            margin-bottom: 40px;
        }

        .cookies-section h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #f0b90b;
            border-bottom: 2px solid #334155;
            padding-bottom: 10px;
        }

        .cookies-section h3 {
            font-size: 1.4rem;
            margin: 25px 0 15px;
            color: #e2e8f0;
        }

        .cookies-section p {
            margin-bottom: 15px;
            color: #cbd5e1;
        }

        .cookies-section ul, .cookies-section ol {
            margin-left: 20px;
            margin-bottom: 20px;
            color: #cbd5e1;
        }

        .cookies-section li {
            margin-bottom: 10px;
        }

        .highlight-box {
            background-color: #0f172a;
            border-left: 4px solid #f0b90b;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }

        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
        }

        .cookie-table th {
            background-color: #0f172a;
            color: #f0b90b;
            padding: 15px;
            text-align: left;
            border: 1px solid #334155;
        }

        .cookie-table td {
            padding: 15px;
            border: 1px solid #334155;
            color: #cbd5e1;
        }

        .cookie-table tr:nth-child(even) {
            background-color: rgba(15, 23, 42, 0.3);
        }

        .cookie-controls {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
        }

        .cookie-btn {
            background-color: #334155;
            color: #f8fafc;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .cookie-btn:hover {
            background-color: #475569;
        }

        .cookie-btn.accept {
            background-color: #f0b90b;
            color: #1e293b;
        }

        .cookie-btn.accept:hover {
            background-color: #e6ac00;
        }

        .cookie-btn.reject {
            background-color: #334155;
            color: #f8fafc;
        }

        .cookie-btn.reject:hover {
            background-color: #475569;
        }

        .cookie-btn.settings {
            background-color: #0f172a;
            color: #f0b90b;
            border: 2px solid #f0b90b;
        }

        .cookie-btn.settings:hover {
            background-color: #1e293b;
        }

        /* Footer */
        footer {
            background-color: #0a0f1c;
            padding: 40px 0 20px;
            margin-top: 60px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-logo {
            flex: 1;
            min-width: 250px;
        }

        .footer-logo .logo {
            margin-bottom: 20px;
        }

        .footer-links {
            flex: 2;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .footer-column {
            min-width: 150px;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #f0b90b;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 10px;
        }

        .footer-column a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: #f0b90b;
        }

        .current-page {
            color: #f0b90b !important;
            font-weight: 600;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 0.9rem;
        }

        /* Banner de Cookies */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #1e293b;
            padding: 20px;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: none;
        }

        .cookie-banner.active {
            display: block;
        }

        .cookie-banner-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .cookie-banner-text {
            flex: 1;
            min-width: 300px;
        }

        .cookie-banner-text p {
            color: #cbd5e1;
            margin-bottom: 0;
        }

        .cookie-banner-actions {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .cookies-header h1 {
                font-size: 2.2rem;
            }
            
            .cookies-content {
                padding: 25px;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .cookie-table {
                display: block;
                overflow-x: auto;
            }
            
            .cookie-banner-content {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-banner-actions {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .cookies-header h1 {
                font-size: 1.8rem;
            }
            
            .cookies-section h2 {
                font-size: 1.5rem;
            }
        }