:root {
    --primary-color: #33691e;
    --secondary-color: #689f38;
    --accent-color: #e91e63;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-light: #e9ecef;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-wood: linear-gradient(45deg, #8B4513, #D2691E, #CD853F);
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s ease;
    --border-radius: 8px;
    --border-radius-large: 16px;
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-smooth);
    min-width: 120px;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: var(--text-light);
    color: var(--text-white);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-dark);
    border-color: var(--text-dark);
}

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-white);
    border-radius: var(--border-radius-large);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.8);
    transition: transform var(--transition-smooth);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 24px;
}

.modal-body p {
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.6;
}

.age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--text-white);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform var(--transition-smooth);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.logo {
    text-decoration: none;
    color: var(--primary-color);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-wood);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color var(--transition-fast);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: all var(--transition-fast);
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-wood);
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.05) 50%, transparent 60%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.game-section {
    padding: 80px 0;
    background: var(--bg-white);
    text-align: center;
}

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

.memory-game {
    max-width: 600px;
    margin: 40px auto 0;
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.score-board {
    display: flex;
    gap: 30px;
    font-weight: 600;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.game-card {
    aspect-ratio: 1;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-white);
    transition: all var(--transition-smooth);
    transform-style: preserve-3d;
}

.game-card:hover {
    transform: scale(1.05);
}

.game-card.flipped {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
}

.game-card.matched {
    background: var(--accent-color);
    color: var(--text-white);
    cursor: default;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.casinos-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.casinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.casino-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-large);
    padding: 30px;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-smooth);
    border: 2px solid transparent;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.casino-card.featured {
    border-color: var(--accent-color);
    position: relative;
}

.casino-card.featured::before {
    content: "Destacado";
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent-color);
    color: var(--text-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.casino-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.casino-name {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin: 0;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #ddd;
    font-size: 16px;
}

.star.filled {
    color: #ffc107;
}

.star.half {
    background: linear-gradient(90deg, #ffc107 50%, #ddd 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-number {
    font-weight: 600;
    color: var(--text-dark);
}

.casino-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.casino-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.casino-license {
    margin-bottom: 25px;
}

.license-badge {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 6px 12px;
    border-radius: var(--border-radius);
    font-size: 12px;
    font-weight: 600;
}

.casino-actions {
    display: flex;
    gap: 15px;
}

.casino-actions .btn {
    flex: 1;
    text-align: center;
}

.reviews-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: var(--bg-light);
    border-radius: var(--border-radius-large);
    padding: 30px;
    transition: all var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.review-header h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 0;
}

.review-meta {
    text-align: right;
}

.review-date {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.review-rating {
    background: var(--accent-color);
    color: var(--text-white);
    padding: 4px 8px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 14px;
}

.review-content h4 {
    color: var(--text-dark);
    margin: 20px 0 10px;
    font-size: 1rem;
}

.review-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.review-content li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-light);
}

.review-content li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.bonuses-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.bonus-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-large);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-smooth);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.bonus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.bonus-header h3 {
    color: var(--text-dark);
    margin: 0;
}

.bonus-type {
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.bonus-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.bonus-details p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.bonus-details ul {
    list-style: none;
    text-align: left;
}

.bonus-details li {
    padding: 5px 0;
    color: var(--text-light);
    padding-left: 20px;
    position: relative;
}

.bonus-details li::before {
    content: "✓";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.bonus-disclaimer {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius-large);
    margin-top: 40px;
    border-left: 4px solid var(--accent-color);
}

.bonus-disclaimer p {
    color: var(--text-light);
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.guides-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.guide-card {
    background: var(--bg-light);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-smooth);
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.guide-image {
    height: 200px;
    overflow: hidden;
}

.guide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.guide-card:hover .guide-image img {
    transform: scale(1.1);
}

.guide-content {
    padding: 25px;
}

.guide-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.guide-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.guide-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.guide-time, .guide-level {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: var(--border-radius);
    font-weight: 600;
}

.guide-time {
    background: var(--bg-white);
    color: var(--text-dark);
}

.guide-level {
    background: var(--secondary-color);
    color: var(--text-white);
}

.guide-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.guide-link:hover {
    color: var(--accent-color);
}

.trust-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.trust-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.trust-info h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.trust-info p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.badge-icon {
    font-size: 2rem;
}

.badge-text {
    font-weight: 600;
    color: var(--text-dark);
}

.responsible-gaming {
    padding: 80px 0;
    background: var(--bg-white);
}

.responsible-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.responsible-text p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.responsible-text ul {
    list-style: none;
}

.responsible-text li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.responsible-text li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

.help-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.help-links img {
    max-width: 150px;
    height: auto;
    transition: transform var(--transition-smooth);
}

.help-links img:hover {
    transform: scale(1.05);
}

.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 2px;
}

.contact-text strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-text a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-text a:hover {
    color: var(--accent-color);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.contact-form-element {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.footer {
    background: var(--text-dark);
    color: var(--text-white);
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: var(--text-white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section a:hover {
    color: var(--accent-color);
}

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

.footer-social a {
    font-size: 1.5rem;
    transition: transform var(--transition-fast);
}

.footer-social a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-disclaimer p {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin: 0;
    max-width: 70%;
}

.footer-copyright p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .game-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .score-board {
        justify-content: center;
    }
    
    .game-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .casino-actions {
        flex-direction: column;
    }
    
    .trust-content,
    .responsible-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-disclaimer p {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .casinos-grid,
    .reviews-grid,
    .bonuses-grid,
    .guides-grid {
        grid-template-columns: 1fr;
    }
    
    .casino-card,
    .review-card,
    .bonus-card,
    .guide-card {
        padding: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Legal Pages Styles */
.legal-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: calc(100vh - 80px);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-content h1 {
    color: #00ff88;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.legal-updated {
    text-align: center;
    color: #888;
    font-style: italic;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.legal-text {
    color: #e0e0e0;
    line-height: 1.8;
}

.legal-text h2 {
    color: #00ff88;
    font-size: 1.8rem;
    margin-top: 35px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 255, 136, 0.3);
}

.legal-text h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-text p {
    margin-bottom: 15px;
    color: #d0d0d0;
}

.legal-text ul {
    margin: 15px 0 20px 20px;
    color: #d0d0d0;
}

.legal-text ul li {
    margin-bottom: 10px;
    padding-left: 10px;
    position: relative;
}

.legal-text ul li::before {
    content: "▸";
    color: #00ff88;
    position: absolute;
    left: -15px;
}

.legal-text a {
    color: #00ff88;
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-text a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.legal-text strong {
    color: #fff;
    font-weight: 600;
}

/* Legal Contact Info */
.legal-contact {
    background: rgba(0, 255, 136, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.legal-contact h3 {
    color: #00ff88;
    margin-bottom: 15px;
}

.legal-contact p {
    margin-bottom: 10px;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 25px 20px;
        margin: 0 15px;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-text h2 {
        font-size: 1.5rem;
    }
    
    .legal-text h3 {
        font-size: 1.2rem;
    }
}