/* Theme: Volcano - Molten lava flows, fiery oranges, deep charcoals, and intense heat */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto+Condensed:wght@300;400;700&display=swap');

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: #e8e8e8;
    background: #1a1412;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 10% 20%, rgba(255, 69, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(255, 140, 0, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 50%, rgba(178, 34, 34, 0.08) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 69, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 69, 0, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
}

#topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 20, 18, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid rgba(255, 69, 0, 0.3);
    box-shadow: 0 5px 25px rgba(255, 69, 0, 0.15);
    transition: all 0.35s ease;
}

#topnav.scrolled {
    background: rgba(26, 20, 18, 0.95);
    box-shadow: 0 8px 35px rgba(255, 69, 0, 0.25);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.logo h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    font-weight: 400;
    color: #ff4500;
    margin: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.6);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.3rem;
}

.nav-menu li a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #c4c4c4;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Bebas Neue', cursive;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.2), rgba(255, 140, 0, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: skewX(-10deg);
}

.nav-menu li a:hover::before,
.nav-menu li a.active::before {
    opacity: 1;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #ff4500;
}

.mobile-toggle {
    display: none;
    background: linear-gradient(135deg, #ff4500 0%, #ff8c00 100%);
    border: none;
    color: #1a1412;
    font-size: 1.4rem;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: skewX(-5deg);
    box-shadow: 0 5px 20px rgba(255, 69, 0, 0.4);
}

.mobile-toggle:hover {
    transform: skewX(-5deg) scale(1.05);
    box-shadow: 0 8px 28px rgba(255, 69, 0, 0.6);
}

#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 90px;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: -25%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.25) 0%, transparent 65%);
    border-radius: 50%;
    animation: lavaFlow 18s ease-in-out infinite;
    filter: blur(80px);
}

#hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(178, 34, 34, 0.2) 0%, transparent 65%);
    border-radius: 50%;
    animation: lavaFlow 22s ease-in-out infinite reverse;
    filter: blur(75px);
}

@keyframes lavaFlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(40px, -60px) scale(1.08);
    }
    66% {
        transform: translate(-35px, 35px) scale(0.92);
    }
}

.hero-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2.8rem;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 5.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: eruption 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes eruption {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 5rem;
    font-weight: 400;
    line-height: 0.95;
    margin-bottom: 2.2rem;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 
        0 0 30px rgba(255, 69, 0, 0.7),
        0 0 60px rgba(255, 69, 0, 0.4),
        3px 3px 0 rgba(178, 34, 34, 0.5);
}

.hero-text h1 br {
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #b8b8b8;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Bebas Neue', cursive;
}

.hero-buttons {
    display: flex;
    gap: 1.8rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1.3rem 3rem;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.35s ease;
    font-size: 1.05rem;
    letter-spacing: 1.5px;
    font-family: 'Bebas Neue', cursive;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transform: skewX(-3deg);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #ff4500 0%, #ff8c00 100%);
    color: #1a1412;
    border: none;
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.4);
}

.btn-primary:hover {
    transform: skewX(-3deg) translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 69, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #ff4500;
    border: 2px solid #ff4500;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 69, 0, 0.15);
    transform: skewX(-3deg) translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 69, 0, 0.4);
}

.hero-image {
    animation: eruption 0.9s cubic-bezier(0.23, 1, 0.32, 1) 0.2s both;
}

.profile-card {
    background: rgba(40, 30, 28, 0.8);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.5),
        inset 0 0 60px rgba(255, 69, 0, 0.08);
    border: 2px solid rgba(255, 69, 0, 0.3);
    transition: all 0.4s ease;
    transform: skewY(-2deg);
}

.profile-card:hover {
    transform: skewY(-2deg) translateY(-12px);
    box-shadow: 
        0 35px 90px rgba(0, 0, 0, 0.6),
        inset 0 0 80px rgba(255, 69, 0, 0.12);
    border-color: rgba(255, 69, 0, 0.5);
}

.profile-card img {
    width: 100%;
    margin-bottom: 1.8rem;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 69, 0, 0.25);
}

.profile-details h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.3rem;
    margin-bottom: 0.6rem;
    color: #ff4500;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.profile-details p {
    color: #b8b8b8;
    margin-bottom: 1.8rem;
    line-height: 1.6;
    font-weight: 300;
}

.social-links a {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #ff4500 0%, #ff8c00 100%);
    color: #1a1412;
    text-decoration: none;
    font-weight: 400;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1.5px;
    transition: all 0.35s ease;
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
    text-transform: uppercase;
    transform: skewX(-3deg);
}

.social-links a:hover {
    transform: skewX(-3deg) translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 69, 0, 0.6);
}

section {
    padding: 105px 0;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2.8rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%) skewX(-10deg);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff4500 30%, #ff8c00 50%, #ff4500 70%, transparent);
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.6);
}

.section-header h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 
        0 0 30px rgba(255, 69, 0, 0.7),
        3px 3px 0 rgba(178, 34, 34, 0.5);
}

#experience {
    background: rgba(40, 30, 28, 0.4);
    backdrop-filter: blur(20px);
}

.timeline {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 110px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ff4500 0%, #ff8c00 50%, #b22222 100%);
    box-shadow: 0 0 12px rgba(255, 69, 0, 0.5);
}

.timeline-item {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 4rem;
    margin-bottom: 4.5rem;
    position: relative;
}

.timeline-year {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.2rem;
    font-weight: 400;
    color: #ff4500;
    position: relative;
    z-index: 2;
    text-align: right;
    padding-right: 2rem;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.6);
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -56px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #ff4500 0%, #ff8c00 100%);
    border: 4px solid rgba(26, 20, 18, 0.9);
    box-shadow: 
        0 0 0 7px rgba(255, 69, 0, 0.2),
        0 6px 20px rgba(255, 69, 0, 0.5);
}

.timeline-content {
    background: rgba(40, 30, 28, 0.7);
    backdrop-filter: blur(12px);
    padding: 2.5rem;
    border: 2px solid rgba(255, 69, 0, 0.25);
    border-left: 5px solid #ff4500;
    transition: all 0.4s ease;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
    transform: skewY(-1deg);
}

.timeline-content:hover {
    transform: skewY(-1deg) translateX(12px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    border-left-width: 7px;
    background: rgba(40, 30, 28, 0.85);
    border-color: rgba(255, 69, 0, 0.4);
}

.timeline-content h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.1rem;
    margin-bottom: 0.6rem;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.timeline-content h4 {
    color: #ff8c00;
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: 'Bebas Neue', cursive;
    text-transform: uppercase;
}

.timeline-content p {
    color: #c4c4c4;
    line-height: 1.75;
    margin: 0;
}

.timeline-content a {
    color: #ff4500;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.timeline-content a:hover {
    border-bottom-color: #ff4500;
}

#ai {
    background: linear-gradient(180deg, rgba(40, 30, 28, 0.5) 0%, rgba(26, 20, 18, 0.6) 100%);
    backdrop-filter: blur(20px);
}

.ai-projects {
    display: grid;
    gap: 3.5rem;
}

.project-card {
    background: rgba(40, 30, 28, 0.7);
    backdrop-filter: blur(12px);
    padding: 3.2rem;
    border: 2px solid rgba(255, 69, 0, 0.25);
    border-top: 6px solid transparent;
    border-image: linear-gradient(90deg, #ff4500 0%, #ff8c00 50%, #ff4500 100%) 1;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    transform: skewY(-0.5deg);
}

.project-card:hover {
    transform: skewY(-0.5deg) translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
    background: rgba(40, 30, 28, 0.85);
    border-color: rgba(255, 69, 0, 0.4);
}

.project-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.2rem;
}

.project-header h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.6rem;
    color: #ffffff;
    margin: 0;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.project-client {
    color: #ff8c00;
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
    letter-spacing: 1px;
    font-family: 'Bebas Neue', cursive;
    text-transform: uppercase;
}

.project-card > p {
    color: #c4c4c4;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.project-impact {
    background: rgba(255, 69, 0, 0.12);
    padding: 1.8rem;
    border-left: 5px solid #ff4500;
    color: #d8d8d8;
    line-height: 1.75;
    box-shadow: inset 0 0 30px rgba(255, 69, 0, 0.08);
    transform: skewX(-1deg);
}

.project-impact strong {
    color: #ff8c00;
    font-weight: 700;
}

#speaking {
    background: rgba(26, 20, 18, 0.5);
    backdrop-filter: blur(20px);
}

.speaking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
}

.year-section {
    background: rgba(40, 30, 28, 0.7);
    backdrop-filter: blur(12px);
    padding: 2.8rem;
    border: 2px solid rgba(255, 69, 0, 0.25);
    transition: all 0.4s ease;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
    transform: skewY(-0.5deg);
}

.year-section:hover {
    transform: skewY(-0.5deg) translateY(-8px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 69, 0, 0.4);
    background: rgba(40, 30, 28, 0.85);
}

.year-section h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #ff4500;
    text-align: center;
    padding-bottom: 1.3rem;
    border-bottom: 3px solid rgba(255, 69, 0, 0.3);
    font-weight: 400;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 69, 0, 0.5);
    text-transform: uppercase;
}

.year-section.books {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.2) 0%, rgba(178, 34, 34, 0.2) 100%);
    border: 3px solid rgba(255, 69, 0, 0.4);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.achievements {
    list-style: none;
}

.achievements li {
    padding: 1.1rem 0;
    color: #c4c4c4;
    border-bottom: 2px solid rgba(255, 69, 0, 0.15);
    line-height: 1.75;
    position: relative;
    padding-left: 2.5rem;
}

.achievements li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #ff4500;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.6);
}

.achievements li:last-child {
    border-bottom: none;
}

.achievements strong {
    color: #ffffff;
    font-weight: 700;
}

#personal {
    background: linear-gradient(180deg, rgba(40, 30, 28, 0.5) 0%, rgba(26, 20, 18, 0.6) 100%);
    backdrop-filter: blur(20px);
}

#contact {
    background: rgba(26, 20, 18, 0.6);
    backdrop-filter: blur(20px);
}

.contact-card {
    background: rgba(40, 30, 28, 0.8);
    backdrop-filter: blur(18px);
    padding: 5.5rem 4.5rem;
    text-align: center;
    box-shadow: 
        0 30px 85px rgba(0, 0, 0, 0.6),
        inset 0 0 60px rgba(255, 69, 0, 0.08);
    max-width: 1000px;
    margin: 0 auto;
    border: 3px solid rgba(255, 69, 0, 0.3);
    transform: skewY(-1deg);
}

.contact-card h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 4.2rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 
        0 0 30px rgba(255, 69, 0, 0.7),
        3px 3px 0 rgba(178, 34, 34, 0.5);
}

.contact-card > p {
    font-size: 1.25rem;
    color: #b8b8b8;
    line-height: 1.75;
    margin-bottom: 3.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.4rem 3.2rem;
    background: linear-gradient(135deg, #ff4500 0%, #ff8c00 100%);
    color: #1a1412;
    text-decoration: none;
    font-weight: 400;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.35s ease;
    box-shadow: 0 12px 35px rgba(255, 69, 0, 0.4);
    position: relative;
    overflow: hidden;
    transform: skewX(-3deg);
}

.contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.contact-link:hover::before {
    left: 100%;
}

.contact-link:hover {
    transform: skewX(-3deg) translateY(-5px);
    box-shadow: 0 18px 48px rgba(255, 69, 0, 0.6);
}

.contact-link .icon {
    font-size: 1.6rem;
}

#footer {
    background: rgba(26, 20, 18, 0.95);
    backdrop-filter: blur(15px);
    padding: 3.5rem 0;
    text-align: center;
    color: #7a7a7a;
    border-top: 2px solid rgba(255, 69, 0, 0.3);
    box-shadow: 0 -5px 25px rgba(255, 69, 0, 0.15);
}

#footer a {
    color: #ff8c00;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

#footer a:hover {
    color: #ff4500;
}

@media screen and (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 4.5rem;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 520px;
        margin: 0 auto;
    }

    .speaking-grid {
        grid-template-columns: 1fr;
    }

    .year-section.books {
        grid-column: span 1;
    }
}

@media screen and (max-width: 900px) {
    .nav-container {
        padding: 0 2rem;
        height: 80px;
    }

    html {
        scroll-padding-top: 80px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(26, 20, 18, 0.98);
        backdrop-filter: blur(18px);
        flex-direction: column;
        padding: 2.5rem;
        gap: 0;
        box-shadow: 0 20px 50px rgba(255, 69, 0, 0.3);
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        border-bottom: 2px solid rgba(255, 69, 0, 0.4);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        width: 100%;
        text-align: center;
        padding: 1.2rem;
        border-bottom: 1px solid rgba(255, 69, 0, 0.15);
    }

    .mobile-toggle {
        display: block;
    }

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

    .section-header h2 {
        font-size: 3.2rem;
    }

    .timeline::before {
        left: 22px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
        padding-left: 4.2rem;
    }

    .timeline-year {
        text-align: left;
        padding-right: 0;
    }

    .timeline-year::after {
        left: -42px;
        right: auto;
    }

    .contact-card {
        padding: 4.2rem 3rem;
    }
}

@media screen and (max-width: 600px) {
    .container {
        padding: 0 1.6rem;
    }

    .nav-container {
        padding: 0 1.6rem;
        height: 75px;
    }

    html {
        scroll-padding-top: 75px;
    }

    #hero {
        padding: 110px 0 75px;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 4rem;
    }

    .section-header h2 {
        font-size: 2.6rem;
    }

    .profile-card {
        padding: 2rem;
    }

    .timeline-item {
        padding-left: 3.6rem;
    }

    .timeline-content {
        padding: 2rem;
    }

    .project-card {
        padding: 2.6rem 2rem;
    }

    .contact-card {
        padding: 3.6rem 2rem;
    }

    .contact-card h2 {
        font-size: 3rem;
    }

    .contact-info {
        flex-direction: column;
    }

    .contact-link {
        justify-content: center;
        padding: 1.2rem 2.2rem;
        font-size: 0.95rem;
    }
}