/* ============================================
   DOLIZ SHOES Privacy Policy - Stylesheet
   ============================================ */

/* --- CSS Variables --- */
:root {
    --primary: #2b3de0;
    --primary-light: #4f5ff7;
    --primary-dark: #1a2ab0;
    --accent: #f57c20;
    --accent-light: #ff9a4d;
    --gradient-start: #2b3de0;
    --gradient-mid: #7c3aed;
    --gradient-end: #ec4899;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-section: #f1f5f9;
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-max: 860px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    background: var(--bg-light);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

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

/* --- Header --- */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow var(--transition), background var(--transition);
}

#site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.brand-tagline {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(43, 61, 224, 0.06);
}

.nav-link i {
    font-size: 12px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.mobile-menu-btn:hover {
    background: var(--bg-section);
}

/* --- Mobile Navigation Overlay --- */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

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

.mobile-nav-content {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 300px;
    max-width: 85vw;
    background: var(--bg-white);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.active .mobile-nav-content {
    transform: translateX(0);
}

.mobile-nav-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 8px;
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.mobile-nav-close:hover {
    color: var(--danger);
    background: rgba(239, 68, 68, 0.08);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.mobile-nav-link:hover {
    color: var(--primary);
    background: rgba(43, 61, 224, 0.06);
}

.mobile-nav-link i {
    width: 20px;
    text-align: center;
    font-size: 14px;
    color: var(--primary-light);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 60px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #1e1b4b 100%);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-start);
    top: -150px;
    right: -100px;
    animation: float1 12s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-mid);
    bottom: -100px;
    left: -80px;
    animation: float2 15s ease-in-out infinite;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    animation: float3 10s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-40px, 30px); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -40px); }
}

@keyframes float3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.hero-logo {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto 28px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.meta-badge i {
    color: var(--accent-light);
    font-size: 12px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary), var(--gradient-mid));
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(43, 61, 224, 0.4);
    transition: all var(--transition);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(43, 61, 224, 0.5);
    color: #ffffff;
}

.hero-cta i {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Table of Contents --- */
.toc-section {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    padding: 48px 24px;
}

.toc-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.toc-title i {
    color: var(--primary);
}

.toc-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 10px;
}

.toc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: all var(--transition);
    color: var(--text-secondary);
}

.toc-item:hover {
    background: var(--bg-section);
    border-color: var(--border-light);
    color: var(--primary);
    transform: translateX(4px);
}

.toc-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary), var(--gradient-mid));
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.toc-text {
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.3;
}

/* --- Policy Content --- */
.policy-content {
    padding: 40px 0 80px;
}

.intro-text {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.agreement-text {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 20px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: var(--radius-md);
    color: #065f46;
    font-weight: 500;
    margin-bottom: 48px;
}

.agreement-text i {
    color: var(--success);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* --- Policy Section Card --- */
.policy-section {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    margin-bottom: 24px;
    overflow: hidden;
    transition: all var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.policy-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.policy-section:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-medium);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-light);
}

.section-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(43, 61, 224, 0.25);
}

.section-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.3;
}

.section-header h2 i {
    color: var(--primary-light);
    font-size: 16px;
}

.section-body {
    padding: 28px;
}

.section-body p {
    margin-bottom: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.section-body p:last-child {
    margin-bottom: 0;
}

.section-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* --- Styled List --- */
.styled-list {
    list-style: none;
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.styled-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 16px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 14.5px;
    line-height: 1.6;
    transition: all var(--transition);
}

.styled-list li:hover {
    background: var(--bg-section);
    transform: translateX(4px);
}

.styled-list li i {
    color: var(--primary-light);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.data-list li i {
    color: var(--accent);
}

/* --- No-Collect Grid --- */
.no-collect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 8px;
    margin: 16px 0;
}

.no-collect-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(239, 68, 68, 0.04);
    border: 1px solid rgba(239, 68, 68, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 13.5px;
    font-weight: 500;
    transition: all var(--transition);
}

.no-collect-item:hover {
    background: rgba(239, 68, 68, 0.07);
}

.no-collect-item i {
    color: var(--danger);
    font-size: 14px;
    flex-shrink: 0;
}

/* --- Info Callout --- */
.info-callout {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 22px;
    background: rgba(43, 61, 224, 0.04);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-top: 18px;
}

.info-callout i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.info-callout p {
    margin-bottom: 0 !important;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-callout-blue {
    background: rgba(59, 130, 246, 0.05);
    border-left-color: #3b82f6;
}

.info-callout-blue i {
    color: #3b82f6;
}

.info-callout-green {
    background: rgba(16, 185, 129, 0.05);
    border-left-color: var(--success);
}

.info-callout-green i {
    color: var(--success);
}

.info-callout-warning {
    background: rgba(245, 158, 11, 0.05);
    border-left-color: var(--warning);
}

.info-callout-warning i {
    color: var(--warning);
}

/* --- Email Card --- */
.email-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: linear-gradient(135deg, rgba(43, 61, 224, 0.04), rgba(124, 58, 237, 0.04));
    border: 1px solid rgba(43, 61, 224, 0.12);
    border-radius: var(--radius-md);
    margin: 16px 0;
}

.email-card > i {
    font-size: 22px;
    color: var(--primary);
}

.email-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.email-address {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
}

.email-address:hover {
    text-decoration: underline;
}

.copy-email-btn {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
    white-space: nowrap;
}

.copy-email-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.copy-email-btn:active {
    transform: translateY(0);
}

.copy-email-btn.copied {
    background: var(--success);
}

.copy-email-btn.large {
    margin-left: 0;
    margin-top: 8px;
    padding: 12px 28px;
    font-size: 14px;
    border-radius: 50px;
}

/* --- Contact Card --- */
.contact-card {
    text-align: center;
    padding: 40px 28px;
    background: linear-gradient(135deg, var(--bg-light), rgba(43, 61, 224, 0.03));
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    margin-top: 20px;
}

.contact-logo img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: 16px;
}

.contact-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.contact-email-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-email-row a {
    font-weight: 600;
}

.contact-email-row a:hover {
    text-decoration: underline;
}

/* --- Contact Section Highlight --- */
.contact-section {
    border-color: var(--primary);
    border-width: 2px;
}

.contact-section .section-header {
    background: linear-gradient(135deg, rgba(43, 61, 224, 0.06), rgba(124, 58, 237, 0.04));
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--gradient-mid));
    color: #ffffff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(43, 61, 224, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(43, 61, 224, 0.45);
}

/* --- Toast --- */
.toast {
    position: fixed;
    bottom: 90px;
    right: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: #1e293b;
    color: #ffffff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--shadow-xl);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.35s ease;
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.toast i {
    color: var(--success);
    font-size: 16px;
}

/* --- Footer --- */
#site-footer {
    background: #0f172a;
    padding: 40px 24px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.footer-logo {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
}

.footer-brand-name {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.footer-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-email {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.footer-email i {
    color: var(--accent-light);
}

.footer-email a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

.footer-email a:hover {
    color: #ffffff;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    html {
        scroll-padding-top: 68px;
    }

    .header-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-section {
        min-height: 440px;
        padding: 100px 20px 48px;
    }

    .hero-logo {
        width: 76px;
        height: 76px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .meta-badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .toc-section {
        padding: 36px 16px;
    }

    .toc-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .policy-content {
        padding: 28px 0 60px;
    }

    .container {
        padding: 0 16px;
    }

    .section-header {
        padding: 18px 20px;
        gap: 12px;
    }

    .section-number {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .section-header h2 {
        font-size: 16px;
    }

    .section-body {
        padding: 20px;
    }

    .no-collect-grid {
        grid-template-columns: 1fr;
    }

    .email-card {
        flex-wrap: wrap;
        gap: 12px;
    }

    .copy-email-btn {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }

    .contact-card {
        padding: 28px 20px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

    .toast {
        left: 16px;
        right: 16px;
        bottom: 76px;
        justify-content: center;
    }

    .intro-text {
        font-size: 15px;
    }

    .agreement-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-cta {
        padding: 12px 26px;
        font-size: 14px;
    }

    .brand-tagline {
        display: none;
    }

    .section-header h2 {
        font-size: 15px;
    }

    .styled-list li {
        padding: 8px 12px;
        font-size: 13.5px;
    }

    .no-collect-item {
        font-size: 13px;
        padding: 8px 12px;
    }

    .info-callout {
        padding: 14px 16px;
        gap: 10px;
    }

    .info-callout p {
        font-size: 13px;
    }
}

/* --- Print Styles --- */
@media print {
    #site-header,
    .back-to-top,
    .toast,
    .mobile-nav-overlay,
    .hero-cta,
    .copy-email-btn {
        display: none !important;
    }

    .hero-section {
        min-height: auto;
        padding: 40px 20px;
        background: #f1f5f9 !important;
        color: #000 !important;
    }

    .hero-title,
    .hero-subtitle {
        color: #000 !important;
    }

    .policy-section {
        break-inside: avoid;
        opacity: 1 !important;
        transform: none !important;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }

    body {
        font-size: 14px;
    }
}
