/* ===========================
   RESET & BASE STYLES
   =========================== */

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

:root {
    /* SimpleLabs Brand Colors - aligned with simplelabs.603health.com */
    --primary-color: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --accent-color: #10b981;
    --accent-dark: #059669;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===========================
   TYPOGRAPHY
   =========================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.025em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: -0.015em;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

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

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

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

strong {
    font-weight: 600;
}

/* ===========================
   LAYOUT
   =========================== */

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

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
}

/* ===========================
   HERO SECTION
   =========================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: var(--spacing-2xl) 0;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.hero-logo {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin-bottom: var(--spacing-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.badge-label {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-2xl);
    font-weight: 400;
}

.hero-footer {
    margin-top: var(--spacing-3xl);
    opacity: 0.8;
    font-size: 0.875rem;
}

/* ===========================
   BUTTONS
   =========================== */

.cta-button,
.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

.cta-button:hover,
.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: var(--primary-color);
}

.cta-button svg,
.cta-button-large svg {
    transition: transform var(--transition-base);
}

.cta-button:hover svg,
.cta-button-large:hover svg {
    transform: translateX(4px);
}

.cta-button-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    margin-top: var(--spacing-lg);
}

/* ===========================
   SECTIONS
   =========================== */

.content-section {
    padding: var(--spacing-3xl) 0;
}

.alternate-bg {
    background-color: var(--bg-secondary);
}

.section-header {
    margin-bottom: var(--spacing-2xl);
}

.section-number {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-color);
    background: var(--bg-tertiary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.1em;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0;
}

/* ===========================
   CONTENT BOXES
   =========================== */

.content-box {
    max-width: 800px;
    margin: 0 auto;
}

.intro-box {
    max-width: 900px;
}

.lead-text {
    font-size: 1.375rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
}

.body-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.subsection-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: var(--spacing-2xl) 0 var(--spacing-lg);
    color: var(--text-primary);
}

.subtitle-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.emphasized {
    font-weight: 600;
    color: var(--text-primary);
}

.question-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: var(--spacing-xl);
}

/* ===========================
   CHARTS & DATA VISUALIZATION
   =========================== */

.chart-container {
    margin: var(--spacing-3xl) 0;
    padding: var(--spacing-2xl);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
}

.chart-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.chart-description {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.chart-wrapper {
    position: relative;
    width: 100%;
    min-height: 400px;
    margin: var(--spacing-xl) 0;
}

.chart-legend {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

.chart-note {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.chart-note strong {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .chart-container {
        padding: var(--spacing-lg);
    }
    
    .chart-wrapper {
        min-height: 300px;
    }
}

/* ===========================
   CALLOUT BOXES
   =========================== */

.callout-box {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: var(--radius-xl);
    border: 2px solid var(--primary-light);
    margin: var(--spacing-2xl) 0;
}

.callout-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.callout-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.highlight-box {
    padding: var(--spacing-xl);
    background: var(--bg-tertiary);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-md);
    margin: var(--spacing-xl) 0;
}

.emphasis-box {
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: var(--radius-xl);
    margin: var(--spacing-2xl) 0;
    text-align: center;
}

.note-box {
    padding: var(--spacing-lg);
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-xl);
    font-style: italic;
    color: var(--text-secondary);
}

.quote-box {
    padding: var(--spacing-xl);
    border-left: 4px solid var(--accent-color);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    margin: var(--spacing-xl) 0;
    font-size: 1.25rem;
    font-style: italic;
}

.quote-emphasis {
    font-weight: 600;
    color: var(--text-primary);
    font-style: normal;
    margin-top: var(--spacing-md);
}

.key-takeaway {
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-radius: var(--radius-xl);
    font-size: 1.25rem;
    margin: var(--spacing-2xl) 0;
    border: 2px solid var(--accent-color);
}

/* ===========================
   LISTS
   =========================== */

.checkmark-list {
    list-style: none;
    padding: 0;
}

.checkmark-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
    line-height: 1.6;
}

.checkmark-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.checkbox-list {
    list-style: none;
    padding: 0;
}

.checkbox-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    font-size: 1.0625rem;
}

.checkbox-list input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
    flex-shrink: 0;
}

/* ===========================
   GRIDS
   =========================== */

.myth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-2xl) 0;
}

.myth-card {
    padding: var(--spacing-xl);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all var(--transition-base);
}

.myth-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.myth-card h4 {
    color: var(--primary-dark);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.myth-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 1rem;
}

.input-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-2xl) 0;
}

.input-card {
    padding: var(--spacing-xl);
    background: white;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    transition: all var(--transition-base);
}

.input-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.input-card h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.input-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ===========================
   CHECKLIST SECTIONS
   =========================== */

.checklist-section {
    margin-bottom: var(--spacing-2xl);
    padding: var(--spacing-xl);
    background: white;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
}

.checklist-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

/* ===========================
   CTA SECTION
   =========================== */

.cta-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, white 100%);
}

.value-proposition {
    padding: var(--spacing-2xl);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: var(--radius-xl);
    text-align: center;
    margin: var(--spacing-2xl) 0;
}

.value-proposition h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.value-proposition p {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 0;
}

.cta-box {
    padding: var(--spacing-2xl);
    background: var(--bg-tertiary);
    border-radius: var(--radius-xl);
    text-align: center;
    margin: var(--spacing-2xl) 0;
}

.cta-box h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
}

.text-link {
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.text-link:hover {
    text-decoration-thickness: 2px;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    background: var(--text-primary);
    color: white;
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

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

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-brand .brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: var(--spacing-md);
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-links a {
    color: white;
    opacity: 0.8;
    transition: opacity var(--transition-base);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-light);
}

.footer-bottom {
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.7;
    font-size: 0.875rem;
}

.disclaimer {
    margin-top: var(--spacing-sm);
    font-style: italic;
}

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

@media (max-width: 768px) {
    .hero-section {
        min-height: 90vh;
    }
    
    .content-section {
        padding: var(--spacing-2xl) 0;
    }
    
    .section-header {
        margin-bottom: var(--spacing-xl);
    }
    
    .callout-box {
        flex-direction: column;
        padding: var(--spacing-lg);
    }
    
    .lead-text {
        font-size: 1.25rem;
    }
    
    .body-text {
        font-size: 1.0625rem;
    }
    
    .myth-grid,
    .input-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .checklist-section {
        padding: var(--spacing-lg);
    }
    
    .value-proposition {
        padding: var(--spacing-xl);
    }
    
    .cta-box {
        padding: var(--spacing-xl);
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-button,
    .cta-button-large {
        width: 100%;
        justify-content: center;
    }
}

/* ===========================
   PRINT STYLES
   =========================== */

@media print {
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .cta-button,
    .cta-button-large {
        display: none;
    }
    
    .content-section {
        page-break-inside: avoid;
    }
    
    .footer {
        page-break-before: always;
    }
}

/* ===========================
   TESTOSTERONE ECOSYSTEM INFOGRAPHIC
   =========================== */

.infographic-container {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-color);
}

.infographic-title {
    text-align: center;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

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

.system-diagram {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 600px;
    margin: 0 auto 2rem;
}

/* Center Hub */
.system-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.hub-inner {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3);
    border: 4px solid white;
    transition: transform 0.3s ease;
}

.hub-inner:hover {
    transform: scale(1.05);
}

.hub-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hub-label {
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}

/* System Nodes */
.system-node {
    position: absolute;
    z-index: 5;
    transition: all 0.3s ease;
}

.node-inner {
    width: 140px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.node-inner:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.node-icon {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.node-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.node-details {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.node-inner:hover .node-details {
    display: block;
    opacity: 1;
}

.node-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.node-details li {
    font-size: 0.75rem;
    color: var(--text-secondary);
    padding: 0.25rem 0;
    border-top: 1px solid var(--border-color);
}

.node-details li:first-child {
    border-top: none;
    padding-top: 0;
}

/* Node Positioning */
.node-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.node-2 {
    top: 16.67%;
    right: 0;
}

.node-3 {
    bottom: 16.67%;
    right: 0;
}

.node-4 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.node-5 {
    bottom: 16.67%;
    left: 0;
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.connection-line {
    stroke-width: 2;
    stroke-linecap: round;
}

.line-primary {
    stroke: var(--primary-color);
    opacity: 0.6;
}

.line-secondary {
    stroke: var(--text-muted);
    opacity: 0.2;
    stroke-dasharray: 5, 5;
}

/* Infographic Note */
.infographic-note {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
    margin-top: 2rem;
}

.infographic-note p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.infographic-note strong {
    color: var(--text-primary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .infographic-container {
        padding: 1.5rem;
    }
    
    .system-diagram {
        height: 500px;
    }
    
    .hub-inner {
        width: 140px;
        height: 140px;
    }
    
    .hub-icon {
        font-size: 2rem;
    }
    
    .hub-label {
        font-size: 0.8rem;
    }
    
    .node-inner {
        width: 110px;
        padding: 0.75rem;
    }
    
    .node-icon {
        font-size: 1.5rem;
    }
    
    .node-title {
        font-size: 0.75rem;
    }
    
    .node-details {
        display: none !important;
    }
    
    .infographic-note {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .system-diagram {
        height: 450px;
    }
    
    .hub-inner {
        width: 120px;
        height: 120px;
    }
    
    .hub-label {
        font-size: 0.7rem;
    }
    
    .node-inner {
        width: 90px;
        padding: 0.5rem;
    }
    
    .node-icon {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }
    
    .node-title {
        font-size: 0.65rem;
    }
}

/* ===========================
   ANIMATIONS
   =========================== */

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

.content-box {
    animation: fadeInUp 0.6s ease-out;
}

/* ===========================
   ACCESSIBILITY
   =========================== */

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}
