@font-face {
    font-family: "Geist Pixel";
    src: url("fonts/GeistPixel-Regular-VariableFont_ELSH.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
}
/* ==========================================================================
   RESET & SYSTEM CONFIGURATION
   ========================================================================== */

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

/* Polar Night Palette Variable Scheme */
:root {
    /* 90-95% Pitch Dark Deep Oceanic Base */
    --bg-color-base: #030407;
    --bg-color-dark: #07090f;
    --text-color-primary: #f1f5f9;
    --text-color-secondary: #94a3b8;
    --text-color-muted: #64748b;
    
    /* Authentic Atmosphere Aurora Hues (Aesthetic, non-neon blending values) */
    --aurora-emerald: rgba(16, 185, 129, 0.12);
    --aurora-cyan: rgba(6, 182, 212, 0.14);
    --aurora-violet: rgba(139, 92, 246, 0.11);
    --aurora-rose: rgba(244, 63, 94, 0.08);

    /* Liquid Glass Variables */
    --glass-bg: rgba(7, 10, 19, 0.45);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-border-highlight: rgba(255, 255, 255, 0.15);
    --glass-shadow: rgba(0, 0, 0, 0.7);
    --glass-glow: rgba(56, 189, 248, 0.03);

    /* Fonts */
    --font-display: 'Fraunces', serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --font-pixel: 'Geist Pixel', monospace;

    /* Spacing Constants */
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;

    /* Transition Constants */
    --transition-smooth: cubic-bezier(0.25, 1, 0.5, 1);
}

/* Accessibility: Safe Motion Settings */
@media (prefers-reduced-motion: reduce) {
    :root {
        --transition-smooth: none !important;
    }
    .aurora, #particles-canvas, #mouse-glow {
        display: none !important;
        animation: none !important;
    }
    * {
        animation-delay: 0s !important;
        animation-duration: 0s !important;
        transition-duration: 0s !important;
    }
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-color-base);
}

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

/* ==========================================================================
   CUSTOM SYSTEM SCROLLBAR
   ========================================================================== */

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color-base);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: background 0.3s var(--transition-smooth);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   AURORA AUSTRALIS ATMOSPHERE
   ========================================================================== */

.aurora-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -2;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, #060913 0%, var(--bg-color-base) 100%);
}

.aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    mix-blend-mode: screen;
    opacity: 0.75;
    will-change: transform, opacity;
}

/* Fluid atmospheric drifts simulating 120km high polar winds */
.aurora-emerald {
    top: -20%;
    left: -10%;
    width: 80vw;
    height: 80vh;
    background: var(--aurora-emerald);
    animation: drift-emerald 28s infinite alternate ease-in-out;
}

.aurora-cyan {
    bottom: -10%;
    right: -10%;
    width: 70vw;
    height: 70vh;
    background: var(--aurora-cyan);
    animation: drift-cyan 32s infinite alternate ease-in-out 2s;
}

.aurora-violet {
    top: 30%;
    right: 15%;
    width: 60vw;
    height: 60vh;
    background: var(--aurora-violet);
    animation: drift-violet 25s infinite alternate ease-in-out 4s;
}

.aurora-rose {
    bottom: 20%;
    left: 20%;
    width: 50vw;
    height: 50vh;
    background: var(--aurora-rose);
    animation: drift-rose 35s infinite alternate ease-in-out 1s;
}

@keyframes drift-emerald {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    100% { transform: translate(12%, 8%) scale(1.15) rotate(45deg); }
}

@keyframes drift-cyan {
    0% { transform: translate(0, 0) scale(1.1) rotate(0deg); }
    100% { transform: translate(-10%, -15%) scale(0.9) rotate(-35deg); }
}

@keyframes drift-violet {
    0% { transform: translate(0, 0) scale(0.9) rotate(0deg); }
    100% { transform: translate(-8%, 12%) scale(1.2) rotate(60deg); }
}

@keyframes drift-rose {
    0% { transform: translate(0, 0) scale(1.2) rotate(0deg); }
    100% { transform: translate(15%, -10%) scale(0.85) rotate(-50deg); }
}

/* Background canvas layer */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -3;
    pointer-events: none;
}

/* Custom spotlight interactive mouse background glow */
#mouse-glow {
    position: fixed;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.02) 0%, rgba(6, 182, 212, 0.02) 30%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: opacity 0.6s var(--transition-smooth);
    opacity: 0;
}

/* ==========================================================================
   PAGE LOADING ENGINE
   ========================================================================== */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color-base);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s var(--transition-smooth), visibility 0.8s;
}

.loader-content {
    width: 250px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.loader-tag {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-color-muted);
    letter-spacing: 0.15em;
}

.loader-bar {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background-color: var(--text-color-primary);
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
    animation: progress-fill 1.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes progress-fill {
    0% { width: 0%; }
    100% { width: 100%; }
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: background-color 0.4s var(--transition-smooth);
}

.navbar.scrolled {
    background-color: rgba(3, 4, 7, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-color-primary);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
}

.logo-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #10b981;
    box-shadow: 0 0 8px #10b981;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link-item {
    text-decoration: none;
    color: var(--text-color-secondary);
    font-size: 0.8rem;
    font-family: var(--font-mono);
    transition: color 0.3s var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-num {
    color: var(--text-color-muted);
    font-size: 0.7rem;
}

.nav-link-item:hover {
    color: var(--text-color-primary);
}

/* Liquid Glass Navigation CTA */
.cta-button {
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-color-primary);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s var(--transition-smooth);
}

.cta-arrow {
    transition: transform 0.3s var(--transition-smooth);
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover .cta-arrow {
    transform: translateX(3px);
}

/* ==========================================================================
   HERO SECTOR
   ========================================================================== */

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: var(--space-lg);
}

.hero-container {
    max-width: 900px;
}

.hero-metadata {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-color-muted);
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: var(--space-sm);
    opacity: 0.8;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text-color-primary);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

.student-title {
    font-family: "Geist Pixel", monospace;
}

.serif-title {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-color-secondary);
    max-width: 650px;
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.action-btn {
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 4px;
    transition: all 0.4s var(--transition-smooth);
}

.primary-btn {
    background-color: var(--text-color-primary);
    color: var(--bg-color-base);
    border: 1px solid var(--text-color-primary);
    font-weight: 600;
}

.primary-btn:hover {
    background-color: transparent;
    color: var(--text-color-primary);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.secondary-btn {
    background-color: transparent;
    color: var(--text-color-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.secondary-btn:hover {
    border-color: var(--text-color-primary);
    background-color: rgba(255, 255, 255, 0.03);
}

/* ==========================================================================
   LIQUID GLASS ACCORDION PANEL SYSTEM
   ========================================================================== */

.accordion-section {
    padding-bottom: var(--space-xl);
}

.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Premium Liquid Glass Panel */
.accordion-item {
    border-radius: 28px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-top: 1px solid rgba(255, 255, 255, 0.12); /* Subtle edge highlight reflection */
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 15px 35px var(--glass-shadow), 
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 30px var(--glass-glow);
    backdrop-filter: blur(24px) saturate(130%);
    -webkit-backdrop-filter: blur(24px) saturate(130%);
    overflow: hidden;
    transition: 
        transform 0.4s var(--transition-smooth), 
        box-shadow 0.4s var(--transition-smooth), 
        border-color 0.4s var(--transition-smooth);
    transform-style: preserve-3d;
}

.accordion-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 25px 50px var(--glass-shadow), 
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 40px rgba(6, 182, 212, 0.05);
}

/* Accordion Header Action Control */
.accordion-header {
    width: 100%;
    padding: 2rem 2.5rem;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 2rem;
    color: var(--text-color-primary);
    position: relative;
    z-index: 1;
}

.item-number {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-color-muted);
}

.item-title {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    flex-grow: 1;
    transition: transform 0.4s var(--transition-smooth);
}

.item-status {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--text-color-muted);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.01);
    transition: all 0.3s var(--transition-smooth);
}

.accordion-item:hover .item-status {
    color: var(--text-color-primary);
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.04);
}

/* Accordion Content Smooth Expanding via Grid Trick */
.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.6s var(--transition-smooth);
}

/* Expanded state indicators class controlled by JS */
.accordion-item.active .accordion-content {
    grid-template-rows: 1fr;
}

.accordion-inner {
    min-height: 0;
    overflow: hidden;
    padding: 0 2.5rem 2.5rem 2.5rem;
}

/* Adjustments for Active Status block */
.accordion-item.active .item-status {
    background-color: rgba(16, 185, 129, 0.08);
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.1);
}

/* ==========================================================================
   CONTENT LAYOUTS (INSIDE ACCORDIONS)
   ========================================================================== */

.grid-two-cols {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-lg);
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.bio-text {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    color: var(--text-color-secondary);
    font-size: 1rem;
}

.accent-paragraph {
    font-size: 1.15rem;
    color: var(--text-color-primary);
    line-height: 1.6;
}

.quick-facts {
    background: rgba(255,255,255,0.01);
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.03);
}

.inner-subheading {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-color-primary);
    margin-bottom: 1.2rem;
}

.facts-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-color-secondary);
}

.facts-list li strong {
    color: var(--text-color-primary);
}

/* Skills Content Styling */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.skill-category {
    background: rgba(255, 255, 255, 0.01);
    padding: 1.8rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.category-title {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
    color: var(--text-color-primary);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.skill-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-color-secondary);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    transition: all 0.3s var(--transition-smooth);
}

.skill-tag:hover {
    color: var(--text-color-primary);
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.07);
}

/* Experience Timeline Content */
.timeline {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.03);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 0.3fr 0.7fr;
    gap: 2rem;
}

.timeline-meta {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.timeline-period {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-color-muted);
}

.timeline-company {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text-color-primary);
}

.timeline-role {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
    color: var(--text-color-primary);
}

.timeline-body p {
    color: var(--text-color-secondary);
    font-size: 0.95rem;
}

/* Projects Grid Content */
.projects-grid {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.03);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: all 0.4s var(--transition-smooth);
}

.project-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.project-header {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.project-num {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-color-muted);
}

.project-name {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-color-primary);
}

.project-desc {
    font-size: 0.9rem;
    color: var(--text-color-secondary);
    line-height: 1.6;
    flex-grow: 1;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.project-tags span {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-color-muted);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
}

/* Contact Module Layout */
.contact-pitch {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-details {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.monospace-detail {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-color-secondary);
}

.monospace-detail span {
    color: var(--text-color-muted);
    margin-right: 0.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-color-muted);
    letter-spacing: 0.1em;
}

.form-input {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: var(--text-color-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s var(--transition-smooth);
}

.form-input:focus {
    border-color: rgba(255, 255, 255, 0.20);
    background-color: rgba(255, 255, 255, 0.04);
}

textarea.form-input {
    resize: none;
}

/* Micro-Shimmer Submit Button */
.send-btn {
    position: relative;
    cursor: pointer;
    background-color: var(--text-color-primary);
    border: none;
    color: var(--bg-color-base);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 1rem;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s var(--transition-smooth);
}

.send-btn:hover {
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: left 0.6s ease;
}

.send-btn:hover .btn-shine {
    left: 150%;
    transition: left 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

/* ==========================================================================
   SCROLL REVEAL TRIGGERS
   ========================================================================== */

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s var(--transition-smooth), transform 1.2s var(--transition-smooth);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

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

.page-footer {
    position: fixed;
    bottom: var(--space-sm);
    right: var(--space-md);
    z-index: 10;
    pointer-events: none;
}

.footer-text {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-color-muted);
    opacity: 0.5;
    letter-spacing: 0.05em;
    display: block;
}

/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
    :root {
        --space-xl: 6rem;
    }
    .grid-two-cols {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

@media (max-width: 768px) {
    :root {
        --space-md: 1.25rem;
        --space-lg: 2.5rem;
    }
    
    .nav-links {
        display: none; /* Accessible, compact structure for production */
    }

    .hero-section {
        padding-top: 140px;
    }

    .accordion-header {
        padding: 1.5rem;
        gap: 1.2rem;
    }

    .accordion-inner {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .page-footer {
        position: relative;
        text-align: right;
        padding: 2rem 0;
        bottom: auto;
        right: auto;
    }
}