/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Professional Color System */
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #1e293b;
    --secondary-light: #334155;
    --accent-color: #0891b2;
    --accent-light: #06b6d4;
    
    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-inverse: #ffffff;
    /* Backwards-compatible aliases (fixes undefined variable issues) */
    --text-color: var(--text-primary);
    --white: #ffffff;
    --light-bg: var(--bg-tertiary);
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-dark: #0f172a;
    
    /* Border & Divider Colors */
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --divider-color: #cbd5e1;
    
    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Spacing System (8px base) */
    --space-1: 0.25rem;  /* 4px */
    --space-2: 0.5rem;   /* 8px */
    --space-3: 0.75rem;  /* 12px */
    --space-4: 1rem;     /* 16px */
    --space-5: 1.5rem;   /* 24px */
    --space-6: 2rem;     /* 32px */
    --space-8: 3rem;     /* 48px */
    --space-10: 4rem;    /* 64px */
    --space-12: 5rem;    /* 80px */
    
    /* Typography Scale */
    --text-xs: 0.75rem;      /* 12px */
    --text-sm: 0.875rem;     /* 14px */
    --text-base: 1rem;       /* 16px */
    --text-lg: 1.125rem;     /* 18px */
    --text-xl: 1.25rem;      /* 20px */
    --text-2xl: 1.5rem;      /* 24px */
    --text-3xl: 1.875rem;    /* 30px */
    --text-4xl: 2.25rem;     /* 36px */
    --text-5xl: 3rem;        /* 48px */
    --text-6xl: 3.75rem;     /* 60px */
    
    /* Line Heights */
    --leading-tight: 1.25;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 1.75;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
    
    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Skip to Content Link */
.skip-to-content {
    position: absolute;
    left: -9999px;
    z-index: var(--z-tooltip);
    padding: var(--space-4) var(--space-6);
    background: var(--primary-color);
    color: var(--text-inverse);
    text-decoration: none;
    border-radius: var(--radius);
}

.skip-to-content:focus {
    left: var(--space-4);
    top: var(--space-4);
}

/* Navigation */
.navbar {
    background: var(--bg-primary);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: var(--z-fixed);
    padding: var(--space-4) 0;
    transition: box-shadow var(--transition-base);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
    display: inline-block;
}

.nav-brand:hover,
.nav-brand:focus {
    color: var(--primary-dark);
    outline: none;
}

.nav-brand:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
    border-radius: var(--radius-sm);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-6);
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: var(--text-base);
    transition: color var(--transition-fast);
    position: relative;
    padding: var(--space-2) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary-color);
    outline: none;
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: var(--z-fixed);
}

.hamburger-line {
    width: 2rem;
    height: 0.25rem;
    background: var(--text-primary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    transform-origin: center;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(0.5rem, -0.5rem);
}

/* Keyboard Navigation Styles */
body.keyboard-nav *:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

body:not(.keyboard-nav) *:focus {
    outline: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    margin-top: 70px;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.hero-headshot {
    margin-bottom: 2rem;
}

.hero-headshot img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.highlight {
    color: #ffd700;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    font-weight: 600;
    cursor: pointer;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

/* Resume download button - bright yellow for visibility */
.btn-resume {
    background: #FFCB05; /* primary yellow */
    color: #00274C; /* dark blue text for contrast */
    font-weight: 700;
    border: 2px solid rgba(0,0,0,0.06);
    padding: 0.9rem 1.6rem;
    border-radius: 50px;
}

.btn-resume:hover {
    background: #FFD93D;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 203, 5, 0.35);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-icon {
    margin-right: 0.5rem;
}

/* Credibility Section */
.credibility-section {
    background: var(--bg-secondary);
    padding: 3rem 0;
    border-top: 1px solid var(--border-light);
}

.credibility-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.company-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: var(--transition-base);
}

.logo-item:hover {
    transform: scale(1.08);
}

.logo-item img,
.partner-logo {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: all var(--transition-base);
}

.logo-item:hover img,
.logo-item:hover .partner-logo {
    opacity: 1;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--light-bg);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 1rem auto 0;
}

/* About Section */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1rem;
}

.key-strengths {
    margin-top: 3rem;
}

.key-strengths h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.strength-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 8px;
    transition: var(--transition);
}

.strength-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.strength-icon {
    flex-shrink: 0;
    color: var(--primary-color);
}

.strength-item span:last-child {
    font-weight: 500;
    color: var(--text-color);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Availability Badge */
.availability-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    animation: pulse-availability 2s ease-in-out infinite;
}

@keyframes pulse-availability {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
}

.availability-badge svg circle {
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Experience Section */
.experience-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.experience-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.experience-header h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}

.experience-header h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.experience-dates {
    color: #666;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
}

.experience-location {
    color: #888;
    font-style: italic;
    margin-bottom: 1rem;
}

.experience-details {
    list-style: none;
    padding-left: 0;
}

.experience-details li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-color);
}

.experience-details li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Education Section */
.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.education-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.education-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.education-icon {
    margin: 0 auto 1rem;
    color: var(--primary-color);
    display: block;
}

.education-card h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.education-card h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.education-date {
    color: #666;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.education-detail {
    color: #888;
    margin-bottom: 0.75rem;
}

.education-emphasis {
    color: var(--text-color);
    font-style: italic;
    font-size: 0.95rem;
}

.additional-experience {
    margin-top: 3rem;
}

.additional-experience h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.additional-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.additional-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.additional-item h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.additional-org {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.additional-item p:last-child {
    color: #666;
    line-height: 1.6;
}

/* Publications Section */
.publications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.publication-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.publication-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.publication-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.publication-icon {
    flex-shrink: 0;
    color: var(--primary-color);
}

.publication-header h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    line-height: 1.4;
    margin: 0;
}

.publication-description {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.publication-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.topic-tag {
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.topic-tag:hover {
    background: var(--primary-color);
    color: var(--white);
}

.publication-action {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-bg);
}

.publication-action .btn-primary {
    background: #FFCB05;
    color: #00274C;
}

.publication-action .btn-primary:hover {
    background: #FFD93D;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

/* Contact Section */
.contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
    font-size: 1.05rem;
}

.contact-link:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
}

.contact-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.btn-icon {
    display: inline-block;
    vertical-align: middle;
}

.contact-address {
    margin-top: 2rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-address p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin: 0;
}

/* ============================================
   Footer Styles
   ============================================ */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3.footer-title {
    font-size: var(--text-lg);
    margin-bottom: 1rem;
    color: #FFCB05;
}

.footer-text {
    font-size: var(--text-sm);
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: var(--text-sm);
    transition: all var(--transition-base);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: #FFCB05;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    padding: 0.75rem 1.5rem;
    background: #FFCB05;
    color: #00274C;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: var(--text-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #FFD93D;
    transform: translateY(-2px);
}

.newsletter-note {
    font-size: var(--text-xs);
    opacity: 0.7;
    font-style: italic;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: #FFCB05;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: var(--text-sm);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-primary);
        width: 100%;
        text-align: center;
        transition: left var(--transition-slow);
        box-shadow: var(--shadow-lg);
        padding: var(--space-6);
        gap: var(--space-4);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: var(--space-4);
        font-size: var(--text-lg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .strengths-grid,
    .education-grid,
    .additional-items {
        grid-template-columns: 1fr;
    }

    .experience-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .experience-dates {
        font-size: 0.95rem;
    }

    .contact-link {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .nav-brand {
        font-size: 1.2rem;
    }

    .nav-menu {
        font-size: 0.9rem;
    }
}

/* ============================================
   Printable Resume Styles
   ============================================ */
.printable-resume {
    background: white;
    padding: 0;
}

.resume-page {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #333;
    line-height: 1.4;
    padding: 0.5in;
}

.resume-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #2563eb;
    margin-bottom: 20px;
}

.resume-header h1 {
    font-size: 28px;
    color: #1e293b;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.resume-title {
    font-size: 16px;
    color: #2563eb;
    margin-bottom: 8px;
    font-weight: 600;
}

.resume-contact,
.resume-links {
    font-size: 11px;
    color: #64748b;
    margin: 4px 0;
}

.resume-contact span,
.resume-links span {
    margin: 0 4px;
}

.resume-section {
    margin-bottom: 20px;
    page-break-inside: avoid;
}

.resume-section-title {
    font-size: 16px;
    color: #1e293b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 4px;
    margin-bottom: 12px;
}

.resume-summary {
    font-size: 11px;
    line-height: 1.5;
    color: #475569;
}

.resume-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.skill-tag {
    background: #f1f5f9;
    color: #2563eb;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 500;
}

.resume-job {
    margin-bottom: 16px;
    page-break-inside: avoid;
}

.resume-job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
}

.resume-job-title {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
}

.resume-company {
    font-size: 12px;
    color: #2563eb;
    font-weight: 600;
}

.resume-dates {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
    white-space: nowrap;
}

.resume-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resume-highlights li {
    font-size: 10px;
    line-height: 1.4;
    color: #475569;
    margin-bottom: 4px;
    padding-left: 12px;
    position: relative;
}

.resume-highlights li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.resume-education {
    margin-bottom: 12px;
}

.resume-emphasis {
    font-size: 10px;
    color: #64748b;
    font-style: italic;
    margin-top: 2px;
}

.resume-publication {
    margin-bottom: 10px;
}

.resume-pub-title {
    font-size: 11px;
    font-weight: 600;
    color: #1e293b;
}

.resume-pub-desc {
    font-size: 10px;
    color: #64748b;
    line-height: 1.4;
}

/* Print-specific styles */
@media print {
    .resume-page {
        padding: 0.3in;
    }
    
    .resume-section {
        page-break-inside: avoid;
    }
    
    .resume-job {
        page-break-inside: avoid;
    }
}

/* ============================================
   Contact Form Styles
   ============================================ */
.contact-form-container {
    max-width: 700px;
    margin: 3rem auto;
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-title {
    font-size: var(--text-2xl);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.required {
    color: var(--error);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-size: var(--text-base);
    font-family: inherit;
    transition: all var(--transition-base);
    background: var(--bg-primary);
    color: var(--text-primary);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-input:invalid:not(:placeholder-shown) {
    border-color: var(--error);
}

.form-input.error {
    border-color: var(--error);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
}

.error-message {
    display: none;
    font-size: var(--text-sm);
    color: var(--error);
    margin-top: 0.25rem;
}

.error-message.show {
    display: block;
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.btn-submit {
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: var(--text-base);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-submit.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid var(--bg-primary);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-message {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-top: 1.5rem;
}

.form-message svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.form-message strong {
    display: block;
    margin-bottom: 0.25rem;
}

.form-message p {
    margin: 0;
    font-size: var(--text-sm);
}

.success-message {
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    color: #065f46;
}

.success-message svg {
    stroke: #059669;
}

.error-message-box {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.error-message-box svg {
    stroke: #dc2626;
}

.error-message-box a {
    color: #991b1b;
    text-decoration: underline;
}

.contact-divider {
    text-align: center;
    position: relative;
    margin: 3rem 0 2rem;
}

.contact-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.contact-divider span {
    position: relative;
    background: var(--light-bg);
    padding: 0 1rem;
    color: var(--text-secondary);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Form Responsiveness */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .btn-submit {
        width: 100%;
    }
}

/* ============================================
   Calendly Integration Styling
   ============================================ */
.calendly-container {
    max-width: 700px;
    margin: 3rem auto;
    text-align: center;
}

.calendly-title {
    font-size: var(--text-2xl);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.calendly-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.calendly-placeholder {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px dashed var(--border-color);
}

.calendly-placeholder svg {
    color: var(--primary-color);
    margin: 0 auto 1.5rem;
    opacity: 0.6;
}

.calendly-placeholder p {
    margin: 0.5rem 0;
    color: var(--text-secondary);
}

.calendly-placeholder .small-text {
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-style: italic;
}

/* When Calendly is activated, hide placeholder */
.calendly-inline-widget + .calendly-placeholder {
    display: none;
}

/* ============================================
   Metrics / By The Numbers Section
   ============================================ */
.metrics-section {
    background: linear-gradient(135deg, #00274C 0%, #2563eb 100%);
    padding: 5rem 0;
    color: white;
}

.metrics-section .section-title {
    color: white;
}

.metrics-section .section-title::after {
    background: #FFCB05;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.metric-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
}

.metric-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.metric-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FFCB05;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.metric-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #FFCB05;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-left-color: #00274C;
}

.testimonial-icon {
    color: #FFCB05;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-author {
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.author-name {
    font-weight: 700;
    color: #00274C;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-company {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
}

/* ============================================
   Enhanced Hero Section
   ============================================ */
.hero {
    background: linear-gradient(135deg, #00274C 0%, #2563eb 60%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 203, 5, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-headshot img {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ============================================
   Enhanced Button Styles with Gold Accents
   ============================================ */
.btn-primary {
    background: #FFCB05;
    color: #00274C;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: #FFD93D;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 203, 5, 0.4);
}

/* ============================================
   Enhanced Card Animations
   ============================================ */
.experience-card,
.publication-card,
.education-card {
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.experience-card:nth-child(1) { animation-delay: 0.1s; }
.experience-card:nth-child(2) { animation-delay: 0.2s; }
.experience-card:nth-child(3) { animation-delay: 0.3s; }
.experience-card:nth-child(4) { animation-delay: 0.4s; }

.publication-card:nth-child(1) { animation-delay: 0.1s; }
.publication-card:nth-child(2) { animation-delay: 0.2s; }
.publication-card:nth-child(3) { animation-delay: 0.3s; }
.publication-card:nth-child(4) { animation-delay: 0.4s; }
.publication-card:nth-child(5) { animation-delay: 0.5s; }

/* ============================================
   Smooth Hover Effects
   ============================================ */
.strength-item:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, #f8fafc 0%, #FFCB05 0%, #f8fafc 5%);
}

.additional-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 39, 76, 0.15);
    border-left: 4px solid #FFCB05;
}

.contact-link:hover .contact-icon {
    transform: scale(1.2);
    color: #FFCB05;
}

/* ============================================
   Section Background Enhancements
   ============================================ */
.section-alt {
    background: linear-gradient(to bottom, #f8fafc 0%, #e2e8f0 100%);
}

.section {
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #FFCB05 50%, transparent 100%);
}

/* ============================================
   Responsive Enhancements
   ============================================ */
@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-number {
        font-size: 2.5rem;
    }
    
    .metric-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* ============================================
   Insights / Blog Section
   ============================================ */
.insights-section {
    background: white;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: -1rem auto 3rem;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.insight-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid #00274C;
}

.insight-card.featured {
    border-left-color: #FFCB05;
    background: linear-gradient(135deg, #fffbeb 0%, white 100%);
}

.insight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.insight-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #FFCB05;
    color: #00274C;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.insight-icon {
    color: #00274C;
    margin-bottom: 1.5rem;
}

.insight-card h3 {
    font-size: 1.4rem;
    color: #00274C;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.insight-excerpt {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.insight-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.insight-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.9rem;
    color: #64748b;
}

.read-time::before {
    content: "📖 ";
}

.insight-date {
    font-style: italic;
}

.cta-box {
    background: linear-gradient(135deg, #00274C 0%, #2563eb 100%);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    color: white;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.cta-box .btn {
    margin-top: 0.5rem;
}

/* ============================================
   Video Section
   ============================================ */
.video-section {
    background: linear-gradient(to bottom, #f8fafc 0%, #e2e8f0 100%);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-placeholder {
    background: white;
    padding: 4rem 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px dashed #cbd5e1;
}

.video-icon {
    color: #00274C;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.video-placeholder h3 {
    font-size: 1.8rem;
    color: #00274C;
    margin-bottom: 1rem;
}

.video-placeholder p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.video-topics {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.video-topics span {
    color: #00274C;
    font-weight: 600;
    font-size: 1rem;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ============================================
   Chart Section
   ============================================ */
.chart-section {
    background: white;
}

.chart-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.chart-note {
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
    margin-top: 1.5rem;
}

/* ============================================
   Case Studies Section
   ============================================ */
.case-studies-section {
    background: linear-gradient(to bottom, #f8fafc 0%, #e2e8f0 100%);
}

.section-header-with-image {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.section-header-content {
    flex: 1;
}

.section-header-image {
    flex: 0 0 auto;
}

@media (max-width: 768px) {
    .section-header-with-image {
        flex-direction: column;
        text-align: center;
    }
    
    .section-header-image img {
        max-width: 200px !important;
    }
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.case-study-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.case-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #FFCB05;
    color: #00274C;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-study-card h3 {
    font-size: 1.5rem;
    color: #00274C;
    margin-bottom: 2rem;
    padding-right: 6rem;
    line-height: 1.4;
}

.case-challenge,
.case-solution,
.case-results {
    margin-bottom: 1.5rem;
}

.case-challenge h4,
.case-solution h4,
.case-results h4 {
    font-size: 1.1rem;
    color: #00274C;
    margin-bottom: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-challenge p,
.case-solution p {
    color: #475569;
    line-height: 1.7;
}

.case-results ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-results li {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.case-results li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FFCB05;
    font-weight: bold;
    font-size: 1.2rem;
}

.case-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

/* ============================================
   Responsive for New Sections
   ============================================ */
@media (max-width: 768px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .video-placeholder {
        padding: 3rem 2rem;
    }
    
    .video-topics {
        flex-direction: column;
        gap: 1rem;
    }
    
    .chart-container {
        padding: 1rem;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .case-study-card h3 {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .case-badge {
        top: auto;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

/* ============================================
   Back to Top Button
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #FFCB05;
    color: #00274C;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.3s ease;
    z-index: var(--z-fixed);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #FFD93D;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 203, 5, 0.4);
}

.back-to-top:active {
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }
}

/* ============================================
   Lifestyle Integration Section
   ============================================ */
.lifestyle-section {
    margin-top: 4rem;
    padding: 3rem 0 2rem;
    border-top: 2px solid var(--border-color);
}

.lifestyle-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.lifestyle-image {
    flex: 0 0 300px;
}

.lifestyle-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform var(--transition-base);
}

.lifestyle-image img:hover {
    transform: scale(1.03);
}

.lifestyle-text {
    flex: 1;
}

.lifestyle-text h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.lifestyle-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .lifestyle-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .lifestyle-image {
        flex: 0 0 auto;
    }
    
    .lifestyle-image img {
        max-width: 250px;
    }
}
