/* Zeron Accounting - Policies Page Professional Design */

/* ===== SHARED STYLES (Import from home page) ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Professional Blue Color Palette */
    --primary-blue: #1e40af;
    --primary-blue-dark: #1e3a8a;
    --primary-blue-light: #3b82f6;
    --secondary-blue: #1d4ed8;
    --accent-blue: #2563eb;
    --light-blue: #dbeafe;
    --ultra-light-blue: #eff6ff;
    
    /* Supporting Colors */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --container-max-width: 1280px;
    --section-padding: 120px 0;
    --card-padding: 32px;
    
    /* Animations */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* ===== ENHANCED DETACHED NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    max-width: none;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.navbar.hidden {
    transform: translateX(-50%) translateY(-120px);
    opacity: 0;
}

.nav-container {
    width: 100%;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000000;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    box-shadow: var(--shadow-md);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.5px;
}

.logo-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
    margin-left: -8px;
}

.logo-image {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
}




.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--ultra-light-blue) 0%, var(--white) 50%, var(--light-blue) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(30, 64, 175, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
}

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

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--light-blue);
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: 20px;
    color: var(--gray-600);
    margin-bottom: 48px;
    line-height: 1.7;
}

.policy-navigation {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 60px;
    margin-bottom: 60px;
}

.policy-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--white);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-200);
    transition: var(--transition-smooth);
}

.policy-nav-link:hover {
    background: var(--ultra-light-blue);
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

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

/* ===== TABLE OF CONTENTS ===== */
.toc-section {
    padding: 80px 0;
    background: var(--white);
    display: none;
}

.toc-card {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.toc-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--light-blue);
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.toc-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.toc-header p {
    font-size: 16px;
    color: var(--gray-600);
}

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

.toc-column {
    display: flex;
    flex-direction: column;
}

.toc-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--light-blue);
}

.toc-section-header i {
    font-size: 20px;
    color: var(--primary-blue);
}

.toc-section-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
}

.toc-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toc-column li {
    padding-left: 0;
}

.toc-column a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--gray-600);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition-smooth);
    font-weight: 500;
}

.toc-column a::before {
    content: '→';
    color: var(--primary-blue);
    font-weight: bold;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-smooth);
}

.toc-column a:hover {
    background: var(--ultra-light-blue);
    color: var(--primary-blue);
}

.toc-column a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* ===== POLICY SECTIONS ===== */
.policy-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.policy-section:nth-child(even) {
    background: var(--white);
}

.policy-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.last-updated {
    font-size: 14px;
    color: var(--gray-500);
    font-style: italic;
}

.policy-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.policy-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition-smooth);
}

.policy-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: var(--card-padding);
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.card-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.card-content {
    padding: var(--card-padding);
}

.card-content p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-content p:last-child {
    margin-bottom: 0;
}

.card-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 24px 0 12px 0;
}

.card-content h4:first-child {
    margin-top: 0;
}

.card-content ul {
    margin: 16px 0;
    padding-left: 20px;
}

.card-content li {
    color: var(--gray-600);
    margin-bottom: 8px;
    line-height: 1.6;
}

.card-content li::marker {
    color: var(--primary-blue);
}

/* ===== POLICY CONTACT SECTION ===== */
.policy-contact {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
}

.contact-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-header {
    margin-bottom: 48px;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px;
    backdrop-filter: blur(10px);
}

.contact-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-header p {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.contact-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.option-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.option-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.option-content p {
    font-size: 14px;
    opacity: 0.9;
}

.contact-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background: var(--gray-100);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ===== POLICIES PAGE FOOTER ===== */
.policies-footer {
    position: relative;
    background: linear-gradient(135deg, #0a0f1a 0%, #0d1421 50%, #0a0f1a 100%);
    color: var(--gray-300);
    padding: 80px 0 0;
    overflow: hidden;
}

.policies-footer-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
    transform: translateX(-50%);
    animation: policiesFooterGlow 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes policiesFooterGlow {
    0% {
        transform: translateX(-50%) scale(0.8);
        opacity: 0.3;
    }
    100% {
        transform: translateX(-50%) scale(1.2);
        opacity: 0.6;
    }
}

.policies-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    align-items: start;
    padding-bottom: 60px;
    position: relative;
    z-index: 2;
}

.policies-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.policies-brand-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    animation: policiesLogoFloat 6s ease-in-out infinite;
}

@keyframes policiesLogoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.policies-logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.policies-logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(-45deg);
    animation: policiesLogoShine 3s linear infinite;
}

@keyframes policiesLogoShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(-45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(-45deg); }
}

.policies-logo-text {
    font-size: 32px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.policies-brand-tagline {
    font-size: 14px;
    color: var(--gray-400);
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.policies-footer-nav {
    display: flex;
    gap: 60px;
}

.policies-nav-section {
    min-width: 120px;
}

.policies-nav-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    position: relative;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.policies-nav-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    border-radius: 1px;
    animation: policiesExpandLine 1s ease-out 1.2s both;
}

@keyframes policiesExpandLine {
    0% { width: 0; }
    100% { width: 24px; }
}

.policies-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.policies-nav-link {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 4px 0;
    animation: fadeInUp 1s ease-out calc(0.9s + var(--delay, 0)) both;
}

.policies-nav-links li:nth-child(1) .policies-nav-link { --delay: 0.1s; }
.policies-nav-links li:nth-child(2) .policies-nav-link { --delay: 0.2s; }
.policies-nav-links li:nth-child(3) .policies-nav-link { --delay: 0.3s; }

.policies-nav-link::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    width: 0;
    height: 0;
    border-left: 4px solid var(--primary-blue);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.policies-nav-link:hover {
    color: var(--primary-blue);
    transform: translateX(12px);
}

.policies-nav-link:hover::before {
    opacity: 1;
}

.policies-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.policies-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-400);
    animation: fadeInLeft 1s ease-out calc(1.1s + var(--delay, 0)) both;
}

.policies-contact-item:nth-child(1) { --delay: 0.1s; }
.policies-contact-item:nth-child(2) { --delay: 0.2s; }
.policies-contact-item:nth-child(3) { --delay: 0.3s; }

.policies-contact-item i {
    width: 32px;
    height: 32px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 14px;
    transition: all 0.3s ease;
}

.policies-contact-item:hover i {
    background: rgba(59, 130, 246, 0.2);
    transform: scale(1.1);
}

.policies-contact-item a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policies-contact-item:hover a {
    color: var(--primary-blue);
}

.policies-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.policies-copyright span {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
}

.policies-certifications {
    display: flex;
    gap: 24px;
}

.policies-cert-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    font-size: 12px;
    color: var(--gray-400);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: policiesCertFloat calc(4s + var(--delay, 0)) ease-in-out infinite alternate;
}

.policies-certifications .policies-cert-badge:nth-child(1) { --delay: 0s; }
.policies-certifications .policies-cert-badge:nth-child(2) { --delay: 2s; }

@keyframes policiesCertFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-4px); }
}

.policies-cert-badge:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.policies-cert-badge i {
    color: var(--primary-blue);
    font-size: 14px;
}

/* ===== FOOTER (Shared) ===== */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--gray-400);
}

.footer-certifications {
    display: flex;
    gap: 16px;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--gray-800);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.cert-badge i {
    color: var(--primary-blue);
}

.link-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.link-column a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.link-column a:hover {
    color: var(--primary-blue);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--gray-400);
}

.contact-item i {
    color: var(--primary-blue);
    width: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--gray-800);
}

.footer-security {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 14px;
}

.footer-security i {
    color: var(--primary-blue);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .toc-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .policy-navigation {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 12px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: none;
        border-radius: 16px;
    }
    
    .navbar.hidden {
        transform: translateX(-50%) translateY(-120px);
    }
    
    .nav-menu {
        position: fixed;
        top: 96px;
        left: 12px;
        right: 12px;
        width: calc(100% - 24px);
        height: calc(100vh - 108px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 40px 0;
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-xl);
        z-index: 999;
        border-radius: 16px;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 12px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Hide dropdowns on mobile */
    .dropdown-menu {
        display: none;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .toc-card {
        padding: 32px 24px;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .policy-nav-link {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .toc-card {
        padding: 24px 16px;
    }
    
    .card-content,
    .card-header {
        padding: 24px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .nav-toggle,
    .policy-navigation,
    .contact-actions,
    .footer {
        display: none;
    }
    
    .hero,
    .policy-section {
        page-break-inside: avoid;
    margin: 0;
        padding: 20px 0;
    }
    
    .policy-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .hero-title,
    .section-title {
        color: #000;
    }
}