/* EcoLotto Australia - Natural Gaming Experience */

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
}

html, body {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100% !important;
}

/* Import Natural Fonts */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&family=Open+Sans:wght@300;400;600;700&display=swap');

/* Eco Color Variables - Nature Harmony Scheme (Dark Adapted) */
:root {
    --forest-dark: #2D5016;        /* Deep forest green */
    --olive-green: #4D7C0F;        /* Rich olive */
    --sage-green: #65A30D;         /* Vibrant sage */
    --earth-brown: #78350F;        /* Rich earth brown */
    --cream-light: #FAF3E0;        /* Natural cream */
    --moss-green: #166534;         /* Deep moss */
    --leaf-green: #BBF7D0;         /* Fresh leaf */
    --bark-brown: #92400E;         /* Tree bark */
    --white: #FFFFFF;
    --black: #1C2917;              /* Deep forest black */
    
    /* Gradients */
    --nature-gradient: linear-gradient(135deg, #2D5016 0%, #4D7C0F 50%, #2D5016 100%);
    --earth-gradient: linear-gradient(90deg, #78350F, #92400E);
    --leaf-gradient: linear-gradient(45deg, #65A30D, #BBF7D0);
    --forest-gradient: linear-gradient(180deg, #166534, #2D5016);
    
    /* Shadows */
    --natural-shadow: 0 8px 25px rgba(45, 80, 22, 0.6);
    --earth-shadow: 0 4px 15px rgba(120, 53, 15, 0.4);
    --leaf-glow: 0 0 20px rgba(187, 247, 208, 0.3);
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --slow-transition: all 0.8s ease-out;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--nature-gradient);
    color: #E8F5E8;
    line-height: 1.7;
    font-weight: 400;
    position: relative;
    min-height: 100vh;
}

/* Natural Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(187, 247, 208, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(101, 163, 13, 0.05) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 1.5rem;
    word-wrap: break-word;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    background: var(--leaf-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: naturalGlow 4s ease-in-out infinite;
}

h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: var(--sage-green);
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--leaf-gradient);
    border-radius: 2px;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.7rem);
    color: var(--leaf-green);
}

p {
    margin-bottom: 1.3rem;
    color: #E8F5E8;
    word-wrap: break-word;
    line-height: 1.8;
}

/* Animations */
@keyframes naturalGlow {
    0%, 100% { 
        filter: brightness(1) saturate(1);
        transform: scale(1);
    }
    50% { 
        filter: brightness(1.1) saturate(1.2);
        transform: scale(1.01);
    }
}

@keyframes leafFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
    }
    33% { 
        transform: translateY(-10px) rotate(2deg);
    }
    66% { 
        transform: translateY(5px) rotate(-1deg);
    }
}

@keyframes growUp {
    from { 
        opacity: 0; 
        transform: translateY(30px) scale(0.9);
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1);
    }
}

@keyframes organicPulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(187, 247, 208, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 0 15px rgba(187, 247, 208, 0);
        transform: scale(1.03);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(45, 80, 22, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--olive-green);
}

.header-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 70px;
    max-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
}

.logo-icon {
    font-size: 2.2rem;
    color: var(--leaf-green);
    animation: leafFloat 3s ease-in-out infinite;
}

.logo-text {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.logo:hover .logo-icon {
    transform: scale(1.2) rotate(15deg);
    color: var(--sage-green);
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    justify-self: end;
}

.desktop-nav a {
    color: #E8F5E8;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.8rem 1.2rem;
    border: 2px solid transparent;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.desktop-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--leaf-gradient);
    transition: var(--transition);
    z-index: -1;
    border-radius: 25px;
}

.desktop-nav a:hover {
    color: var(--forest-dark);
    border-color: var(--sage-green);
    transform: translateY(-2px);
}

.desktop-nav a:hover::before {
    left: 0;
}

/* Mobile Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: rgba(45, 80, 22, 0.4);
    border: 2px solid var(--sage-green);
    border-radius: 10px;
    padding: 8px;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.burger span {
    width: 100%;
    height: 3px;
    background: var(--leaf-green);
    border-radius: 2px;
    transition: var(--transition);
}

.burger:hover {
    background: rgba(101, 163, 13, 0.2);
    transform: scale(1.1);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 300px;
    height: calc(100vh - 80px);
    background: rgba(45, 80, 22, 0.98);
    backdrop-filter: blur(20px);
    border-left: 3px solid var(--sage-green);
    transition: var(--slow-transition);
    z-index: 1500;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a {
    color: #FEF7ED !important;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(101, 163, 13, 0.3);
    transition: var(--transition);
    display: block !important;
    z-index: 10;
}

.mobile-nav a:hover {
    background: rgba(101, 163, 13, 0.2) !important;
    color: var(--leaf-green) !important;
    padding-left: 2.5rem;
}

/* Hero Section */
.hero-section {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding-top: 8rem;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hero-bg.jpg') center/cover no-repeat;
    z-index: -2;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 80, 22, 0.8);
    z-index: 1;
}

.hero-content {
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
    z-index: 2;
    position: relative;
    animation: growUp 1.2s ease-out;
}

.hero-content h1 {
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
}

.hero-content h2 {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: var(--leaf-green);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 3rem;
    color: #E8F5E8;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-link {
    padding: 1rem 2.5rem;
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    border-radius: 30px;
}

.btn-primary {
    background: var(--leaf-gradient);
    color: var(--forest-dark);
    border: 2px solid var(--sage-green);
    box-shadow: var(--leaf-glow);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(187, 247, 208, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--leaf-green);
    border: 2px solid var(--sage-green);
}

.btn-secondary:hover {
    background: var(--sage-green);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-link {
    background: transparent;
    color: #E8F5E8;
    border: 1px solid var(--olive-green);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-link:hover {
    color: var(--leaf-green);
    border-color: var(--leaf-green);
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    background: var(--forest-dark);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('accent-bg.jpg') center/cover no-repeat;
    opacity: 0.15;
    z-index: -1;
}

.stats-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--leaf-green);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(45, 80, 22, 0.8);
    border: 2px solid var(--olive-green);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(187, 247, 208, 0.1), transparent);
    animation: rotate 6s linear infinite;
    z-index: -1;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--sage-green);
    box-shadow: var(--leaf-glow);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    animation: organicPulse 3s infinite;
}

.stat-number {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    color: var(--leaf-green);
    font-weight: 700;
    margin-bottom: 0.5rem;
    animation: growUp 0.8s ease-out;
}

.stat-label {
    color: #E8F5E8;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

/* Schedule Section */
.schedule-section {
    padding: 6rem 0;
    background: var(--nature-gradient);
}

.schedule-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--white);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.draw-card {
    background: rgba(28, 41, 23, 0.8);
    border: 2px solid var(--olive-green);
    border-radius: 20px;
    padding: 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.draw-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(187, 247, 208, 0.1), transparent);
    transition: var(--slow-transition);
}

.draw-card:hover {
    transform: translateY(-5px);
    border-color: var(--sage-green);
    box-shadow: var(--natural-shadow);
}

.draw-card:hover::before {
    left: 100%;
}

.draw-date {
    text-align: center;
    border: 2px solid var(--sage-green);
    border-radius: 15px;
    padding: 1rem;
    background: rgba(101, 163, 13, 0.1);
}

.draw-date .day {
    display: block;
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    color: var(--leaf-green);
    line-height: 1;
}

.draw-date .month {
    display: block;
    font-size: 0.8rem;
    color: #E8F5E8;
    letter-spacing: 1px;
}

.draw-info h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.draw-time {
    color: #E8F5E8;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.jackpot {
    color: var(--leaf-green);
    font-weight: 700;
    font-size: 1.1rem;
}

.draw-status {
    font-family: 'Merriweather', serif;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-align: center;
    letter-spacing: 1px;
    background: var(--sage-green);
    color: var(--white);
}

/* Article Section */
.article-section {
    padding: 6rem 0;
    background: var(--olive-green);
    position: relative;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(28, 41, 23, 0.9);
    border: 3px solid var(--sage-green);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: var(--natural-shadow);
}

.article-content h2 {
    color: var(--leaf-green);
    margin-bottom: 2rem;
}

.article-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #E8F5E8;
}

/* Eco Section */
.eco-section {
    padding: 6rem 0;
    background: var(--forest-gradient);
}

.eco-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--leaf-green);
}

.eco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.eco-card {
    background: rgba(45, 80, 22, 0.8);
    border: 2px solid var(--olive-green);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}

.eco-card:hover {
    transform: translateY(-8px);
    border-color: var(--sage-green);
    box-shadow: var(--leaf-glow);
}

.eco-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: leafFloat 4s ease-in-out infinite;
}

.eco-card h3 {
    color: var(--leaf-green);
    margin-bottom: 1rem;
}

.eco-card p {
    color: #E8F5E8;
    line-height: 1.8;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #4A4A4A 0%, #3A3A3A 100%);
    color: var(--white);
}

.disclaimer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.disclaimer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
    width: 100%;
}

.logo-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.disclaimer-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #FFFFFF;
}

.disclaimer-logo:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    border-color: #F0F0F0;
}

.age-badge {
    background: #000000;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1rem 1.5rem;
    border-radius: 50%;
    text-align: center;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: 2px solid #FFFFFF;
}

.disclaimer-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #FFFFFF !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.6);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-text * {
    color: #FFFFFF !important;
}

.disclaimer-text a {
    color: #FFFFFF !important;
    text-decoration: underline;
    font-weight: 500;
}

.disclaimer-text a:hover {
    color: #F0F0F0 !important;
    text-decoration: none;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/* Footer */
.main-footer {
    background: var(--black);
    padding: 2rem 0;
    border-top: 3px solid var(--sage-green);
}

.main-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: #E8F5E8;
    text-decoration: none;
    letter-spacing: 0.5px;
    font-weight: 600;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--leaf-green);
    transform: translateY(-2px);
}

.footer-text {
    color: #FFFFFF;
    font-size: 0.9rem;
    text-align: center;
}

/* Popups */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.popup-content {
    background: var(--forest-dark);
    border: 3px solid var(--sage-green);
    border-radius: 25px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: var(--natural-shadow);
    animation: growUp 0.5s ease-out;
}

.popup-header h2 {
    color: var(--leaf-green);
    margin-bottom: 1rem;
}

.popup-body p {
    color: #E8F5E8;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.popup-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(45, 80, 22, 0.95);
    border: 2px solid var(--sage-green);
    border-radius: 20px;
    padding: 1.5rem;
    max-width: 400px;
    z-index: 1800;
    backdrop-filter: blur(15px);
    box-shadow: var(--natural-shadow);
}

.cookie-content p {
    color: #E8F5E8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Mobile Responsive */
@media (max-width: 899px) {
    .burger {
        display: flex !important;
        justify-self: end;
        margin-right: 1rem;
        z-index: 1600;
    }
    
    .desktop-nav {
        display: none !important;
    }
    
    .hero-section {
        padding-top: 12rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .draw-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .eco-grid {
        grid-template-columns: 1fr;
    }
    
    .article-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .disclaimer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .disclaimer-text {
        font-size: 1rem;
        color: #FFFFFF !important;
        background: rgba(0, 0, 0, 0.7);
        padding: 1rem;
        max-width: 100%;
    }
    
    .disclaimer-text * {
        color: #FFFFFF !important;
    }
    
    .disclaimer-text a {
        font-size: 1rem;
        padding: 2px 4px;
        border-radius: 3px;
        background: rgba(255, 255, 255, 0.1);
        color: #FFFFFF !important;
    }
    
    .logo-group {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }
    
    .disclaimer-logos {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .disclaimer-logo {
        height: 70px;
        padding: 0.8rem;
        min-width: 80px;
        border: 2px solid #FFFFFF !important;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-banner {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .popup-content {
        padding: 2rem;
        margin: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .draw-card {
        padding: 1.5rem;
    }
    
    .article-content {
        padding: 1.5rem;
    }
    
    .eco-card {
        padding: 2rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .header, .mobile-nav, .cookie-banner, .popup-overlay {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero-section {
        padding-top: 2rem;
    }
}
