:root {
    --color-navy: #0f1b2d;
    --color-navy-alt: #162236;
    --color-cream: #faf9f7;
    --color-warm-white: #ffffff;
    --color-gold: #f0c040;
    --color-gold-light: #f5d64b;
    --color-text: #cbd5e1;
    --color-text-light: #64748b;
    --color-border: #e2e8f0;
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-soft: 0 4px 20px rgba(15, 27, 45, 0.08);
    --shadow-medium: 0 8px 30px rgba(15, 27, 45, 0.12);
    --shadow-strong: 0 12px 40px rgba(15, 27, 45, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-color-scheme: dark) {
    :root {
        --color-navy: #0f1b2d;
        --color-navy-alt: #162236;
        --color-cream: #0a0f1a;
        --color-warm-white: #0f1b2d;
        --color-gold: #f0c040;
        --color-gold-light: #f5d64b;
        --color-text: #e2e8f0;
        --color-text-light: #94a3b8;
        --color-border: #1e293b;
        --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
        --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.4);
        --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.5);
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --color-navy: #0f172a;
        --color-navy-light: #1e293b;
        --color-cream: #0a0f1a;
        --color-warm-white: #0f172a;
        --color-gold: #d4af37;
        --color-gold-light: #e5c558;
        --color-text: #e2e8f0;
        --color-text-light: #94a3b8;
        --color-border: #1e293b;
        --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
        --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.4);
        --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.5);
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.7;
    background: var(--color-cream);
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--color-navy);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

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

h4 {
    font-size: 1rem;
}

p {
    margin-bottom: 1.25rem;
}

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

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

nav.scrolled {
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    padding: 16px 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

nav.scrolled .logo {
    color: #ffffff;
}

.logo-mark {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-body);
}

nav.scrolled .logo-mark {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: var(--color-navy);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text);
    position: relative;
}

nav.scrolled .nav-links a {
    color: rgba(255, 255, 255, 0.9);
}

.nav-links a:hover {
    color: var(--color-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--color-navy);
    color: var(--color-warm-white) !important;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
}

nav.scrolled .nav-cta {
    background: var(--color-gold);
    color: var(--color-navy) !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
}

.nav-cta::after {
    display: none !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    margin: 6px 0;
    transition: var(--transition);
}

nav.scrolled .mobile-menu-btn span {
    background: #ffffff;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: var(--color-navy) url('hero-bg.png') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(15, 27, 45, 0.88) 0%,
        rgba(15, 27, 45, 0.72) 50%,
        rgba(15, 27, 45, 0.45) 100%
    );
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 640px;
}

.hero h1 {
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out;
    color: #ffffff;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-navy);
}

.btn-primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-navy);
    color: var(--color-navy);
    transform: translateY(-3px);
}

.btn svg {
    width: 18px;
    height: 18px;
}


.hero-card {
    background: var(--color-warm-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-medium);
    position: relative;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}

.hero-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-navy);
}

.hero-card h3 {
    font-size: 1.25rem;
    color: var(--color-text);
}

.hero-card p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin: 0;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: var(--color-cream);
    border-radius: 12px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: 4px;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.about .section-label {
    color: var(--color-text);
}

.section-header h2 {
    margin-bottom: 1rem;
}

.projects .section-header h2 {
    color: #ffffff;
}

.section-header p {
    color: var(--color-text-light);
    font-size: 1.15rem;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 400;
}

.about .section-subtitle {
    color: #ffffff;
}

.about .section-header h2 {
    color: var(--color-gold);
}

/* About Section */
.about {
    background: var(--color-navy-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-proof {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-radius: 16px;
    padding: 32px;
    border-left: 4px solid var(--color-gold);
}

.about-proof h3 {
    font-size: 1.25rem;
    margin-bottom: 24px;
    color: var(--color-gold);
}

.about-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin: 32px 0;
}

.about-stat {
    text-align: center;
}

.about-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-gold);
    line-height: 1;
}

.about-stat-label {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-stat-label.org-scale {
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .about-stat {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}

.proof-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.proof-point {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.proof-point strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gold);
}

.proof-point span {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.about-image {
    position: relative;
}

.about-image-main {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.about-philosophy {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--color-navy);
    color: #ffffff;
    padding: 32px 40px;
    border-radius: 16px;
    max-width: 320px;
    box-shadow: var(--shadow-medium);
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.about-philosophy p {
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.5;
}

/* Project Cards as Flip Cards */
.flip-card {
    perspective: 1000px;
    height: 420px;
    margin: 0;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flip-card-front {
    background: linear-gradient(135deg, #0f1b2d 0%, #1a2f4a 100%);
}

.flip-card-back {
    background: #162236;
    transform: rotateY(180deg);
    justify-content: flex-start;
    padding-top: 2.25rem;
    overflow: hidden;
}

/* Override heading color inside dark flip cards */
.flip-card h3 {
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.flip-card-front .why-statement {
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.flip-card-back p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.flip-hint {
    font-size: 0.75rem;
    color: var(--color-gold);
    opacity: 0.7;
    margin-top: auto;
}

.flip-card .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0.5rem 0 0.75rem;
}

.badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 0.5rem;
    background: rgba(240, 192, 64, 0.15);
    border: 1px solid rgba(240, 192, 64, 0.4);
    color: var(--color-gold);
}

.project-footer {
    margin-top: auto;
}

.project-footer a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.flip-card-back .project-footer a {
    color: var(--color-gold);
    font-size: 0.9rem;
    font-weight: 600;
}

.flip-card-back .project-footer a svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .flip-card {
        height: auto;
        min-height: 320px;
    }

    .flip-card-back {
        overflow-y: auto;
    }
}



.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.project-card {
    background: var(--color-warm-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--color-gold);
}

.project-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.project-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-gold) 0%, rgba(240, 192, 64, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-navy);
}

.project-header h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--color-text);
}

.project-status {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold);
    margin-top: 4px;
}

.project-body {
    flex: 1;
    margin-bottom: 24px;
}

.project-body p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.project-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(240, 192, 64, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffffff;
}

.project-footer {
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.95rem;
}

.project-link:hover {
    color: var(--color-gold);
}

.project-link svg {
    width: 18px;
    height: 18px;
}

.project-link:hover {
    color: var(--color-gold);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    color: var(--color-warm-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.github-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 48px 0;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.github-proof-text {
    font-size: 0.95rem;
    color: var(--color-text);
}

.github-proof-link {
    color: var(--color-gold);
    font-weight: 600;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact h2 {
    color: #ffffff;
    margin-bottom: 24px;
}

.contact p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin: 0 0 40px;
}

.contact .btn-primary {
    background: var(--color-gold);
    color: var(--color-navy);
    padding: 18px 40px;
    font-size: 1.1rem;
}

.contact .btn-primary:hover {
    background: var(--color-gold-light);
    color: var(--color-navy);
}

.contact-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: center;
}

.contact-column {
    text-align: center;
    padding: 40px;
}

.contact-column h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--color-gold);
}

.contact-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.contact-column .btn-primary {
    margin-top: 0;
}

.contact-column .btn-secondary {
    margin-top: 0;
}

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

    .contact-column {
        padding: 32px 20px;
    }
}

/* Footer */
footer {
    background: var(--color-navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 40px;
}

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

.footer-brand .logo {
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.footer-tagline {
    color: var(--color-gold);
    font-size: 0.9rem;
    margin-top: 12px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links h4 {
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
}

/* Hero role signal */
.hero-role-signal {
    font-size: 0.9rem;
    color: var(--color-gold);
    margin-bottom: 40px;
    letter-spacing: 1.5px;
    font-weight: 500;
    opacity: 0.85;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

/* Restore h1 to full display size now that headline is short */
.hero h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
}

.hero-lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 12px;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

/* Tools Origin Section */
.tools-origin {
    background: var(--color-navy-alt);
    padding: 56px 0;
    border-left: 4px solid var(--color-gold);
}

.tools-origin .container {
    max-width: 720px;
}

.tools-origin p {
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.8;
    margin: 0;
    font-style: italic;
}

/* Beliefs Section */
.beliefs {
    background: var(--color-cream);
    padding: 100px 0;
}

.beliefs .section-label {
    color: var(--color-gold);
}

.beliefs .section-header h2 {
    color: var(--color-navy);
}

@media (prefers-color-scheme: dark) {
    .beliefs .section-header h2 {
        color: var(--color-text);
    }
}

.beliefs-list {
    list-style: none;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.beliefs-list li {
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.7;
}

.beliefs-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 600;
}

/* Recruiter Signal */
.recruiter-signal-wrapper {
    background: var(--color-navy);
    padding: 20px 24px;
    text-align: center;
}

.recruiter-signal {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
    margin: 0;
}

.recruiter-signal a {
    color: var(--color-gold);
    opacity: 0.75;
    text-decoration: underline;
}

.recruiter-signal a:hover {
    opacity: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

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

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-navy);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: var(--shadow-medium);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: #ffffff;
    }

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

    .about-philosophy {
        position: static;
        max-width: 100%;
        margin-top: -20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        flex-direction: column;
    }
}
