/* ========================================
   Splash & Dash Car Wash - Main Stylesheet
   No external dependencies
   ======================================== */

/* CSS Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* CSS Variables */
:root {
    /* Brand Colors */
    --main-light: #00aeef;
    --main-dark: #283891;
    --yellow-400: #facc15;
    
    /* Neutrals */
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Status */
    --green-500: #22c55e;
    --red-500: #ef4444;
    
    /* Gradients */
    --gradient-main: linear-gradient(to right, var(--main-light) 70%, var(--main-dark) 100%);
    --gradient-reverse: linear-gradient(to right, var(--main-dark), var(--main-light));
    --gradient-card: linear-gradient(to right, var(--main-light), var(--main-dark));
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Typography */
    --font-family: Arial, Helvetica, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Effects */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    --transition: 200ms ease-in-out;
}

/* Base Styles */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--white);
    background-color: var(--black);
    overflow-x: hidden;
}

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

@media (min-width: 1024px) {
    .container {
        padding: 0 16px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }

p {
    margin-bottom: var(--space-md);
}

a {
    color: var(--main-light);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--yellow-400);
}

/* Icons */
.icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

.check-icon {
    width: 18px;
    height: 18px;
    fill: var(--white);
    flex-shrink: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: var(--font-size-base);
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
}

.btn-primary {
    background: var(--gradient-reverse);
    color: var(--white);
}

.btn-primary:hover {
    box-shadow: var(--shadow-xl);
    opacity: 0.9;
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--main-dark);
}

.btn-secondary:hover {
    background: var(--yellow-400);
    color: var(--main-dark);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--main-dark);
}

/* ========================================
   Header & Navigation
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--gradient-main);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.nav {
    height: 60px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4px 16px;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 50px;
    width: auto;
    max-width: 150px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    color: var(--white);
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--white);
    left: 0;
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
    margin: 0;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    padding: var(--space-sm) 0;
    transition: all var(--transition);
    text-decoration: none;
}

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

.nav-cta {
    background: var(--gradient-reverse);
    color: var(--white) !important;
    padding: var(--space-sm) var(--space-lg) !important;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
}

.nav-cta:hover {
    box-shadow: var(--shadow-xl);
    opacity: 0.9;
}

/* Mobile Navigation */
@media (max-width: 900px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        right: 16px;
        width: 220px;
        background: linear-gradient(to bottom, var(--main-light), var(--main-dark));
        flex-direction: column;
        padding: 12px 0;
        border-radius: var(--radius);
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        padding: 10px 20px;
        width: 100%;
        text-align: right;
    }
    
    .nav-link:hover {
        background: rgba(255,255,255,0.1);
    }
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('/static/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
    color: var(--white);
}

.hero-logo {
    max-width: 300px;
    height: auto;
    margin-bottom: var(--space-xl);
}

@media (min-width: 640px) {
    .hero-logo {
        max-width: 400px;
    }
}

.hero h1 {
    color: var(--white);
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    animation: fadeIn 0.5s ease-in;
}

@media (min-width: 640px) {
    .hero h1 {
        font-size: var(--font-size-5xl);
    }
}

.hero p {
    font-size: var(--font-size-xl);
    opacity: 0.9;
    margin-bottom: var(--space-xl);
    max-width: 42rem;
    animation: fadeIn 0.5s ease-in;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
}

.hero-wave svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    fill: var(--gray-50);
}

/* ========================================
   Sections
   ======================================== */
.section {
    padding: var(--space-3xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-md);
    color: var(--main-dark);
    font-size: var(--font-size-4xl);
    text-shadow: 1px 1px 2px var(--yellow-400);
}

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--space-2xl);
}

/* ========================================
   Locations Section
   ======================================== */
.locations-section {
    background: var(--white);
    padding: var(--space-3xl) 16px;
}

.locations-section .section-title {
    color: var(--main-dark);
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

@media (min-width: 768px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.location-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition), box-shadow var(--transition);
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.location-status {
    background: linear-gradient(to left, var(--main-dark), var(--main-light));
    padding: var(--space-lg);
    color: var(--white);
}

.location-card h3 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.status-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.status-open {
    background: var(--green-500);
    color: var(--white);
}

.status-closed {
    background: var(--red-500);
    color: var(--white);
}

.location-info {
    padding: var(--space-lg);
}

.location-info p {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--gray-600);
}

.location-info .icon {
    fill: var(--main-light);
}

.location-info .hours {
    flex-direction: column;
    gap: var(--space-xs);
    align-items: flex-start;
}

.location-info .hours span {
    display: block;
}

.location-card .btn {
    margin: 0 var(--space-lg) var(--space-lg);
}

.location-closed {
    opacity: 0.8;
}

/* ========================================
   Wash Menu Section
   ======================================== */
.wash-section {
    position: relative;
    background: var(--gray-50);
    color: var(--gray-800);
    padding: var(--space-3xl) 0;
}

.wash-section .section-title {
    color: var(--main-dark);
    text-shadow: 1px 1px 2px var(--yellow-400);
}

.wash-section .section-subtitle {
    color: var(--gray-600);
}

.wash-wave-top,
.wash-wave-bottom {
    display: none;
}

.wash-packages {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

@media (min-width: 1024px) {
    .wash-packages {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wash-card {
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition);
}

.wash-card:hover {
    transform: translateY(-8px);
}

.wash-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid rgba(255,255,255,0.3);
}

.wash-card-header h3 {
    margin: 0;
    color: var(--white);
}

.wash-price {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--white);
    text-shadow: 0.75px 0.75px 0.75px black;
}

.wash-description {
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.wash-features {
    list-style: none;
}

.wash-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    color: var(--white);
}

.wash-features li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
}

.fleet-callout {
    text-align: center;
    background: var(--gradient-main);
    border-radius: var(--radius);
    padding: var(--space-xl);
    box-shadow: var(--shadow);
}

.fleet-callout h3 {
    color: var(--yellow-400);
    margin-bottom: var(--space-sm);
}

.fleet-callout p {
    color: var(--white);
    margin-bottom: var(--space-lg);
}

/* ========================================
   Detailing Section
   ======================================== */
.detailing-section {
    background: var(--gray-50);
    padding: var(--space-3xl) 0;
}

.detailing-section .section-title {
    color: var(--main-dark);
    text-shadow: 1px 1px 2px var(--yellow-400);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

@media (min-width: 900px) {
    .detail-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.detail-includes,
.detail-packages {
    background: var(--gradient-card);
    border-radius: var(--radius);
    padding: var(--space-xl);
    color: var(--white);
}

.detail-includes h3,
.detail-packages h3 {
    color: var(--main-dark);
    margin-bottom: var(--space-lg);
    text-shadow: 1px 1px 2px var(--yellow-400);
    text-align: center;
}

.includes-list {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.includes-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    color: var(--white);
}

.includes-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
}

.express-wax-callout,
.wonder-wafers {
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.express-wax-callout h4,
.wonder-wafers h4 {
    color: var(--yellow-400);
    margin-bottom: var(--space-sm);
}

.wafer-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.wafer-tag {
    background: rgba(255,255,255,0.2);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius);
    font-size: var(--font-size-sm);
    color: var(--white);
}

.price-table {
    background: var(--white);
    border-radius: var(--radius);
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--gray-50);
    border-radius: var(--radius);
    margin-bottom: var(--space-sm);
}

.service-name {
    font-weight: 500;
    color: var(--gray-800);
}

.service-price {
    font-weight: 700;
    color: var(--main-dark);
}

.price-table.addons .price-row {
    background: var(--gray-100);
}

.car-spa {
    background: var(--gradient-main);
    color: var(--white);
    border-radius: var(--radius);
    padding: var(--space-xl);
    text-align: center;
}

.car-spa h3 {
    color: var(--main-dark);
    margin-bottom: var(--space-md);
    text-shadow: 1px 1px 2px var(--yellow-400);
}

.car-spa ul {
    list-style: none;
    margin-bottom: var(--space-xl);
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.car-spa li {
    padding: var(--space-sm) 0;
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.car-spa li::before {
    content: "";
    width: 12px;
    height: 12px;
    background: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ========================================
   Fleet Section
   ======================================== */
.fleet-section {
    background: var(--gray-50);
    padding: var(--space-3xl) 0;
}

.fleet-section .section-title {
    color: var(--main-dark);
    text-shadow: 1px 1px 2px var(--yellow-400);
}

.fleet-content {
    background: var(--gradient-card);
    border-radius: var(--radius);
    padding: var(--space-xl);
}

@media (min-width: 900px) {
    .fleet-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

.fleet-benefits h3,
.fleet-details h3 {
    color: var(--main-dark);
    margin-bottom: var(--space-lg);
    text-shadow: 1px 1px 2px var(--yellow-400);
}

.benefit-cards {
    display: grid;
    gap: var(--space-md);
}

.benefit-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: var(--space-lg);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    box-shadow: var(--shadow);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-card);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.benefit-card h4 {
    margin-bottom: var(--space-xs);
    color: var(--main-dark);
}

.benefit-card p {
    color: var(--gray-600);
    margin: 0;
    font-size: var(--font-size-sm);
}

.fleet-details ul {
    margin-bottom: var(--space-xl);
    color: var(--white);
}

.fleet-details li {
    margin-bottom: var(--space-sm);
}

.fleet-contact {
    background: var(--white);
    border-radius: var(--radius);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow);
}

.fleet-contact h4 {
    color: var(--main-dark);
    margin-bottom: var(--space-md);
}

.fleet-contact p {
    color: var(--gray-600);
}

.fleet-contact a {
    color: var(--main-dark);
}

.fleet-contact a:hover {
    color: var(--main-light);
}

.fleet-contact .btn {
    margin: var(--space-lg) 0;
}

.contact-info {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
}

/* ========================================
   Gift Section
   ======================================== */
.gift-section {
    background: var(--gradient-main);
    color: var(--white);
    padding: var(--space-2xl) 0;
}

.gift-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
}

.gift-text h2 {
    color: var(--yellow-400);
    margin-bottom: var(--space-md);
}

.gift-text p {
    font-size: var(--font-size-lg);
}

.gift-icon {
    width: 120px;
    height: 120px;
    fill: var(--white);
    opacity: 0.5;
}

@media (max-width: 600px) {
    .gift-content {
        flex-direction: column;
        text-align: center;
    }
    
    .gift-icon {
        width: 80px;
        height: 80px;
    }
}

/* ========================================
   Employment Section
   ======================================== */
.employment-section {
    background: var(--white);
    padding: 16px;
}

.employment-section .section-title {
    color: var(--main-dark);
    text-shadow: 1px 1px 2px var(--yellow-400);
}

.job-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--gradient-card);
    border-radius: var(--radius);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.job-header h3 {
    margin: 0;
    color: var(--white);
}

.job-type {
    background: var(--yellow-400);
    color: var(--main-dark);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.job-details {
    margin-bottom: var(--space-lg);
}

.job-location,
.job-pay {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.job-location .icon,
.job-pay .icon {
    fill: var(--yellow-400);
}

.job-description {
    margin-bottom: var(--space-lg);
    color: var(--white);
}

.job-note {
    font-size: var(--font-size-sm);
    color: var(--yellow-400);
    margin-top: var(--space-md);
    text-align: center;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    position: relative;
    background: linear-gradient(to right, var(--main-light) 50%, var(--main-dark) 100%);
}

@media (min-width: 640px) {
    .footer {
        background: linear-gradient(to right, var(--main-light) 60%, var(--main-dark) 100%);
    }
}

@media (min-width: 768px) {
    .footer {
        background: linear-gradient(to right, var(--main-light) 80%, var(--main-dark) 100%);
    }
}

.footer-wave {
    display: none;
}

.footer-content {
    padding: var(--space-3xl) 16px var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section h4 {
    color: var(--main-dark);
    margin-bottom: var(--space-md);
    font-size: var(--font-size-lg);
    text-shadow: 1px 1px 2px var(--yellow-400);
    text-align: center;
}

.footer-section p {
    margin-bottom: var(--space-sm);
    font-size: var(--font-size-sm);
    color: var(--yellow-400);
    text-align: center;
}

.footer-section a {
    color: var(--yellow-400);
}

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

.footer-section .hours {
    font-size: var(--font-size-sm);
}

.footer-links {
    list-style: none;
    text-align: center;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--yellow-400);
    font-size: var(--font-size-sm);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom p {
    font-size: var(--font-size-sm);
    margin: 0;
    color: var(--main-dark);
    font-weight: 700;
    text-shadow: 1px 1px 2px var(--yellow-400);
}

/* ========================================
   Error Page
   ======================================== */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 60px;
    background: var(--black);
}

.error-page h1 {
    font-size: 8rem;
    color: var(--main-light);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.error-page p {
    font-size: var(--font-size-xl);
    color: var(--white);
    margin-bottom: var(--space-xl);
}

/* ========================================
   Utilities
   ======================================== */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: var(--space-lg); }

/* Print Styles */
@media print {
    .header,
    .hero,
    .footer {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
}
