:root {
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --primary-color: #38bdf8;
    --secondary-color: #818cf8;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

/* Background Texture */
/* Background Texture - Vibrant Overhaul */
body {
    font-family: var(--font-main);
    background-color: #0f172a;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(76, 29, 149, 0.15), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(14, 165, 233, 0.15), transparent 25%),
        radial-gradient(circle at 50% 80%, rgba(236, 72, 153, 0.1), transparent 40%);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Page Specific Themes (Optional - can be added to body class) */
/* Cornell Page Theme */
body.cornell-theme {
    background-image:
        radial-gradient(circle at 20% 20%, rgba(185, 28, 28, 0.15), transparent 30%),
        /* Cornell Red-ish */
        radial-gradient(circle at 80% 80%, rgba(234, 179, 8, 0.1), transparent 30%);
}

/* Interests Page Theme */
body.interests-theme {
    background-image:
        radial-gradient(circle at 10% 90%, rgba(16, 185, 129, 0.15), transparent 30%),
        radial-gradient(circle at 90% 10%, rgba(139, 92, 246, 0.15), transparent 30%);
}

/* Page Header */
.page-header {
    padding: 220px 0 80px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.8), transparent);
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Blog Cards (Cornell Page) */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.blog-img-placeholder {
    height: 200px;
    background: var(--bg-card);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--glass-border);
}

.blog-content {
    padding: 1.5rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 1rem;
    display: inline-block;
}

/* Notes List */
.notes-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
}

.note-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.note-item:last-child {
    border-bottom: none;
}

.note-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.note-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.note-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.note-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.note-links {
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.note-links li a {
    font-size: 0.85rem;
    color: var(--primary-color);
    background: rgba(56, 189, 248, 0.1);
    padding: 0.2rem 0.8rem;
    border-radius: 4px;
    transition: var(--transition);
}

.note-links li a:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.note-topic {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-left: 0.5rem;
    font-style: italic;
}

.btn-icon {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.btn-icon:hover {
    color: var(--primary-color);
}

/* Thoughts */
.thoughts-container {
    padding: 2rem;
}

.thought-entry {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.thought-entry:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Interest Cards */
.interest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.interest-card {
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.interest-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.interest-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.interest-list {
    text-align: left;
    margin-top: 1rem;
    padding-left: 1rem;
}

.interest-list li {
    list-style-type: disc;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

/* Game Gallery */
.game-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.game-card {
    display: flex;
    align-items: center;
    padding: 1rem;
    gap: 1.5rem;
    transition: var(--transition);
}

.game-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

.game-img-placeholder {
    width: 80px;
    height: 80px;
    background: var(--bg-dark);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--primary-color);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.highlight {
    color: var(--primary-color);
}

/* Glassmorphism */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-dark);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(56, 189, 248, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: rgba(56, 189, 248, 0.1);
    color: var(--text-main);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    /* Increased opacity */
    backdrop-filter: blur(16px);
    /* Increased blur */
    padding: 1.2rem 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
}

.dot {
    color: var(--primary-color);
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

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

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    margin: 6px auto;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Background Glow */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, rgba(15, 23, 42, 0) 70%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.img-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-dark));
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 6rem;
    color: var(--text-muted);
    border: 1px solid var(--glass-border);
    position: relative;
    box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.5);
}

.img-placeholder::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 22px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(10px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-muted);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 24px;
        opacity: 0;
    }
}

/* Custom Cursor */
#custom-cursor {
    position: fixed;
    pointer-events: none;
    width: 32px;
    height: 32px;
    background-image: url('images/cursor.png');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 9999;
    display: none;
    /* Initially hide */
    /* Removed center transform to allow manual offset in JS */
}

/* Hide default cursor on body when custom cursor is active if desired,
   but usually we just want the icon to follow.
   If the user wants to REPLACE the cursor, we'd add cursor: none to body.
   For now, just adding the icon as requested "icon will always be on the mouse". */

/* Anime Theme for Interests Page */
body.anime-theme {
    --primary-color: #f472b6;
    /* Pink-400 */
    --secondary-color: #22d3ee;
    /* Cyan-400 */
    background-color: #1a1025;
    /* Deep purple bg */
    background-image: radial-gradient(circle at 10% 20%, rgba(244, 114, 182, 0.2), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(34, 211, 238, 0.2), transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.15), transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    /* Subtle sparkle pattern */
}

body.anime-theme .page-header h1 {
    text-shadow: 0 0 20px rgba(244, 114, 182, 0.5), 0 0 40px rgba(34, 211, 238, 0.3);
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

body.anime-theme .hub-card,
body.anime-theme .interest-card,
body.anime-theme .game-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    position: relative;
    overflow: hidden;
}

/* Decorative glowing borders for cards */
body.anime-theme .hub-card::before,
body.anime-theme .interest-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

body.anime-theme .hub-card:hover::before,
body.anime-theme .interest-card:hover::before {
    transform: translateX(100%);
}

body.anime-theme .section-title {
    position: relative;
    display: inline-block;
}

body.anime-theme .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Sections */
.section {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 5rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* About */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-card {
    padding: 3rem;
    text-align: center;
}

.about-card p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.skills {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.skill-tag {
    background: rgba(56, 189, 248, 0.1);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    color: var(--primary-color);
    border: 1px solid rgba(56, 189, 248, 0.2);
    transition: var(--transition);
}

.skill-tag:hover {
    background: rgba(56, 189, 248, 0.2);
    transform: translateY(-2px);
}

/* Experience */
.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    opacity: 0.3;
}

.timeline-item {
    margin-bottom: 4rem;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}

.timeline-content {
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.timeline-item:nth-child(odd) .timeline-content::after {
    content: '';
    position: absolute;
    top: 24px;
    right: -3.5rem;
    width: 16px;
    height: 16px;
    background-color: var(--bg-dark);
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    z-index: 1;
    box-shadow: 0 0 10px var(--primary-color);
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    top: 24px;
    left: -3.5rem;
    width: 16px;
    height: 16px;
    background-color: var(--bg-dark);
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    z-index: 1;
    box-shadow: 0 0 10px var(--primary-color);
}

.date {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content h3 {
    margin-bottom: 0.2rem;
}

.timeline-content h4 {
    font-family: var(--font-main);
    font-weight: 500;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Projects */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.project-card {
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5);
}

.project-img-placeholder {
    height: 220px;
    background: var(--bg-card);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--glass-border);
}

.project-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-info p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: auto;
}

.btn-link:hover {
    gap: 0.8rem;
    color: var(--secondary-color);
}

/* Contact */
.contact-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.contact-btn {
    color: var(--text-main);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.contact-btn:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: #020617;
    color: var(--text-muted);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

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

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

.animate-text {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* Hub Grid (Cornell Hub) */
.hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0;
}

.hub-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-main);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
}

.hub-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px -20px rgba(185, 28, 28, 0.3);
    /* Red glow for Cornell */
}

.hub-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: var(--transition);
}

.hub-card:hover .hub-icon {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: scale(1.1);
}

.hub-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.hub-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.hub-link {
    margin-top: auto;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hub-card:hover .hub-link {
    gap: 0.8rem;
}

/* Page Logo */
.page-logo {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 30px rgba(185, 28, 28, 0.2);
}

/* Cornell Theme Specifics */
body.cornell-theme {
    --primary-color: #ef4444;
    /* Red-500 */
    --secondary-color: #f59e0b;
    /* Amber-500 */
    background-color: #1a0505;
    /* Very dark red bg */
    background-image:
        linear-gradient(to bottom, rgba(26, 5, 5, 0.9), rgba(26, 5, 5, 0.8)),
        url('images/cornell_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

body.cornell-theme .highlight {
    color: #fca5a5;
    /* Light Red */
}

body.cornell-theme .navbar {
    background: rgba(26, 5, 5, 0.95);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-card);
        width: 100%;
        text-align: center;
        padding: 2rem 0;
        transition: 0.3s;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-text p {
        margin: 0 auto 2rem;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item {
        width: 100%;
        padding-left: 2rem !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item:nth-child(odd) .timeline-content::after,
    .timeline-item:nth-child(even) .timeline-content::after {
        left: -2.4rem;
        right: auto;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
}