/* Theme: Botanical Garden - Day 28: Inspired by lush greenery, botanical illustrations, natural history museums, pressed flowers, herb gardens, greenhouse architecture, vintage plant catalogs, specimen collections, leaf textures, organic growth patterns */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Nunito+Sans:wght@300;400;600;700;800&display=swap');

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

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

body {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #2d4a2b;
    background: #fafdf8;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(106, 168, 79, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(139, 195, 74, 0.05) 0%, transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(205, 220, 57, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        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='%236aa84f' fill-opacity='0.02'%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");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

#topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 253, 248, 0.94);
    border-bottom: 2px solid rgba(106, 168, 79, 0.18);
    box-shadow: 0 2px 18px rgba(45, 74, 43, 0.06);
    transition: all 0.35s ease;
    backdrop-filter: blur(14px);
}

#topnav.scrolled {
    background: rgba(250, 253, 248, 0.97);
    box-shadow: 0 4px 26px rgba(45, 74, 43, 0.1);
    border-bottom-width: 3px;
}

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

.logo h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: #2d4a2b;
    margin: 0;
    letter-spacing: 0.3px;
    position: relative;
    padding-left: 3.2rem;
}

.logo h1::before {
    content: '❦';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.4rem;
    color: #6aa84f;
    font-weight: 400;
}

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

.nav-menu li a {
    display: block;
    padding: 0.8rem 1.6rem;
    color: #2d4a2b;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.4px;
    border-radius: 8px;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 65%;
    height: 2px;
    background: #8bc34a;
    transition: transform 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #6aa84f;
    background: rgba(106, 168, 79, 0.08);
}

.mobile-toggle {
    display: none;
    background: #6aa84f;
    border: 2px solid #5a9140;
    color: #fafdf8;
    font-size: 1.5rem;
    width: 52px;
    height: 52px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.mobile-toggle:hover {
    background: #5a9140;
    transform: scale(1.04);
}

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

#hero::before {
    content: '';
    position: absolute;
    top: -12%;
    right: -7%;
    width: 580px;
    height: 580px;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.14) 0%, transparent 68%);
    border-radius: 50%;
    animation: botanicalFloat 32s ease-in-out infinite;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: -14%;
    left: -9%;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(106, 168, 79, 0.12) 0%, transparent 68%);
    border-radius: 50%;
    animation: botanicalFloat 36s ease-in-out infinite reverse;
}

@keyframes botanicalFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: translate(32px, -32px) scale(1.06) rotate(5deg);
        opacity: 0.88;
    }
}

.hero-content {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInGrow 1s ease-out;
}

@keyframes fadeInGrow {
    0% {
        opacity: 0;
        transform: translateY(32px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-text h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 4.3rem;
    font-weight: 700;
    line-height: 1.14;
    margin-bottom: 2.2rem;
    color: #2d4a2b;
    letter-spacing: -0.4px;
}

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

.hero-subtitle {
    font-size: 1.28rem;
    color: #4a6b47;
    margin-bottom: 3.2rem;
    line-height: 1.68;
    font-weight: 400;
    letter-spacing: 0.2px;
    padding-left: 2rem;
    border-left: 4px solid #8bc34a;
}

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

.btn {
    display: inline-block;
    padding: 1.15rem 2.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.35s ease;
    font-size: 0.96rem;
    letter-spacing: 0.7px;
    font-family: 'Nunito Sans', sans-serif;
    position: relative;
    border: 2px solid transparent;
    border-radius: 8px;
}

.btn-primary {
    background: #6aa84f;
    color: #fafdf8;
    border-color: #5a9140;
    box-shadow: 0 6px 20px rgba(106, 168, 79, 0.32);
}

.btn-primary:hover {
    background: #5a9140;
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(106, 168, 79, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #6aa84f;
    border: 2px solid #6aa84f;
}

.btn-secondary:hover {
    background: rgba(106, 168, 79, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(106, 168, 79, 0.22);
}

.hero-image {
    animation: fadeInGrow 1s ease-out 0.2s both;
}

.profile-card {
    background: #ffffff;
    padding: 2.6rem;
    box-shadow: 
        0 6px 18px rgba(45, 74, 43, 0.09),
        0 18px 48px rgba(106, 168, 79, 0.14);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid rgba(139, 195, 74, 0.2);
    border-radius: 16px;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #6aa84f 0%, #8bc34a 50%, #cddc39 100%);
    border-radius: 16px 16px 0 0;
}

.profile-card::after {
    content: '❦';
    position: absolute;
    bottom: 36px;
    right: 36px;
    font-size: 5.8rem;
    opacity: 0.028;
    color: #6aa84f;
    font-weight: 400;
}

.profile-card:hover {
    transform: translateY(-11px);
    box-shadow: 
        0 6px 18px rgba(45, 74, 43, 0.09),
        0 30px 72px rgba(106, 168, 79, 0.2);
}

.profile-card img {
    width: 100%;
    margin-bottom: 2.1rem;
    border: 2px solid rgba(139, 195, 74, 0.25);
    box-shadow: 0 6px 22px rgba(45, 74, 43, 0.11);
    border-radius: 12px;
}

.profile-details h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.95rem;
    margin-bottom: 0.9rem;
    color: #2d4a2b;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.profile-details p {
    color: #4a6b47;
    margin-bottom: 2.1rem;
    line-height: 1.7;
    font-weight: 400;
}

.social-links a {
    display: inline-block;
    padding: 1.05rem 2.6rem;
    background: #8bc34a;
    color: #2d4a2b;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.35s ease;
    box-shadow: 0 6px 20px rgba(139, 195, 74, 0.32);
    font-size: 0.94rem;
    border-radius: 8px;
    border: 2px solid #7cb342;
}

.social-links a:hover {
    background: #7cb342;
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(139, 195, 74, 0.4);
}

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

.container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 3rem;
}

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

.section-header::before {
    content: '❦';
    position: absolute;
    top: -56px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.8rem;
    color: rgba(106, 168, 79, 0.24);
    font-weight: 400;
}

.section-header h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 3.9rem;
    font-weight: 700;
    line-height: 1.18;
    color: #2d4a2b;
    letter-spacing: -0.2px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 115px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #6aa84f 25%, #8bc34a 75%, transparent 100%);
}

#experience {
    background: #ffffff;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 122px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #6aa84f 0%, #8bc34a 50%, #cddc39 100%);
    opacity: 0.32;
}

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

.timeline-year {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: #6aa84f;
    position: relative;
    z-index: 2;
    text-align: right;
    padding-right: 2.9rem;
    letter-spacing: 0.2px;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -66px;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    background: #6aa84f;
    border: 4px solid #fafdf8;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(106, 168, 79, 0.24);
}

.timeline-content {
    background: #ffffff;
    padding: 2.9rem;
    transition: all 0.35s ease;
    box-shadow: 0 6px 24px rgba(45, 74, 43, 0.09);
    position: relative;
    border: 2px solid rgba(139, 195, 74, 0.16);
    border-left: 5px solid transparent;
    border-radius: 12px;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6aa84f 30%, #8bc34a 70%, transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 12px 12px 0 0;
}

.timeline-content:hover {
    transform: translateX(12px);
    box-shadow: 0 12px 40px rgba(106, 168, 79, 0.17);
    border-left-color: #8bc34a;
}

.timeline-content:hover::before {
    opacity: 1;
}

.timeline-content h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.82rem;
    margin-bottom: 0.75rem;
    color: #2d4a2b;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.timeline-content h4 {
    color: #6aa84f;
    font-size: 1.08rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.timeline-content p {
    color: #4a6b47;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
}

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

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

#ai {
    background: #fafdf8;
}

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

.project-card {
    background: #ffffff;
    padding: 3.4rem;
    transition: all 0.35s ease;
    position: relative;
    box-shadow: 0 8px 32px rgba(45, 74, 43, 0.1);
    border: 2px solid rgba(139, 195, 74, 0.18);
    border-radius: 16px;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #6aa84f 0%, #8bc34a 40%, #cddc39 80%, #aed581 100%);
    border-radius: 16px 16px 0 0;
}

.project-card::after {
    content: '❦';
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 5.4rem;
    opacity: 0.024;
    color: #6aa84f;
    font-weight: 400;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 54px rgba(106, 168, 79, 0.18);
}

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

.project-header h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.25rem;
    color: #2d4a2b;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.project-client {
    color: #6aa84f;
    font-weight: 700;
    font-size: 1.08rem;
    margin-bottom: 1.9rem;
    letter-spacing: 0.3px;
}

.project-card > p {
    color: #4a6b47;
    line-height: 1.8;
    margin-bottom: 2.7rem;
    font-weight: 400;
}

.project-impact {
    background: linear-gradient(135deg, rgba(106, 168, 79, 0.08) 0%, rgba(139, 195, 74, 0.06) 100%);
    padding: 1.9rem;
    color: #2d4a2b;
    line-height: 1.8;
    border-left: 5px solid #8bc34a;
    position: relative;
    border-radius: 8px;
}

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

#speaking {
    background: #ffffff;
}

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

.year-section {
    background: #ffffff;
    padding: 3rem;
    transition: all 0.35s ease;
    box-shadow: 0 6px 26px rgba(45, 74, 43, 0.09);
    position: relative;
    border: 2px solid rgba(139, 195, 74, 0.18);
    border-radius: 12px;
}

.year-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6aa84f 0%, #8bc34a 50%, #cddc39 100%);
    opacity: 0.45;
    transition: opacity 0.35s ease;
    border-radius: 12px 12px 0 0;
}

.year-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 44px rgba(106, 168, 79, 0.16);
}

.year-section:hover::before {
    opacity: 1;
}

.year-section h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.5rem;
    margin-bottom: 2.7rem;
    color: #2d4a2b;
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(139, 195, 74, 0.18);
    font-weight: 700;
    letter-spacing: 0.2px;
}

.year-section.books {
    grid-column: span 2;
    background: linear-gradient(135deg, #6aa84f 0%, #7cb342 100%);
}

.year-section.books::before {
    background: linear-gradient(90deg, rgba(205, 220, 57, 0.65) 0%, rgba(174, 213, 129, 0.65) 100%);
}

.year-section.books h3 {
    color: #fafdf8;
    border-bottom-color: rgba(250, 253, 248, 0.28);
}

.achievements {
    list-style: none;
}

.achievements li {
    padding: 1.3rem 0;
    color: #4a6b47;
    border-bottom: 2px solid rgba(139, 195, 74, 0.13);
    line-height: 1.8;
    position: relative;
    padding-left: 2.4rem;
    font-weight: 400;
}

.achievements li::before {
    content: '✤';
    position: absolute;
    left: 0;
    top: 1.3rem;
    font-size: 1.1rem;
    color: #8bc34a;
    font-weight: 400;
}

.year-section.books .achievements li {
    color: rgba(250, 253, 248, 0.96);
    border-bottom-color: rgba(250, 253, 248, 0.22);
}

.year-section.books .achievements li::before {
    color: #fafdf8;
}

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

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

.year-section.books .achievements strong {
    color: #fafdf8;
}

#personal {
    background: #fafdf8;
}

#contact {
    background: linear-gradient(135deg, rgba(106, 168, 79, 0.07) 0%, rgba(139, 195, 74, 0.05) 100%);
}

.contact-card {
    background: #ffffff;
    padding: 5.6rem 4.6rem;
    text-align: center;
    box-shadow: 0 26px 72px rgba(106, 168, 79, 0.17);
    max-width: 1020px;
    margin: 0 auto;
    position: relative;
    border: 2px solid rgba(139, 195, 74, 0.2);
    border-radius: 20px;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #6aa84f 0%, #8bc34a 40%, #cddc39 80%, #aed581 100%);
    border-radius: 20px 20px 0 0;
}

.contact-card::after {
    content: '❦';
    position: absolute;
    top: 52px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4.8rem;
    opacity: 0.05;
    color: #6aa84f;
    font-weight: 400;
}

.contact-card h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 3.6rem;
    margin-bottom: 2.1rem;
    color: #2d4a2b;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.contact-card > p {
    font-size: 1.18rem;
    color: #4a6b47;
    line-height: 1.8;
    margin-bottom: 3.9rem;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

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

.contact-link {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    padding: 1.35rem 3.3rem;
    background: #6aa84f;
    color: #fafdf8;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.35s ease;
    box-shadow: 0 8px 30px rgba(106, 168, 79, 0.34);
    border-radius: 10px;
    border: 2px solid #5a9140;
}

.contact-link:hover {
    background: #5a9140;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(106, 168, 79, 0.42);
}

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

#footer {
    background: #2d4a2b;
    padding: 3.3rem 0;
    text-align: center;
    color: rgba(250, 253, 248, 0.74);
    border-top: 2px solid rgba(106, 168, 79, 0.3);
}

#footer a {
    color: #8bc34a;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

    .hero-subtitle {
        border-left: none;
        border-top: 4px solid #8bc34a;
        padding-left: 0;
        padding-top: 1.9rem;
        max-width: 660px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-image {
        max-width: 560px;
        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 2.5rem;
        height: 72px;
    }

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

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: #fafdf8;
        flex-direction: column;
        padding: 2.7rem;
        gap: 0;
        box-shadow: 0 16px 48px rgba(45, 74, 43, 0.16);
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        border-bottom: 2px solid rgba(106, 168, 79, 0.2);
    }

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

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

    .nav-menu li a {
        width: 100%;
        text-align: center;
        padding: 1.1rem;
        border-bottom: 1px solid rgba(139, 195, 74, 0.13);
        border-radius: 0;
    }

    .nav-menu li a::after {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

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

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

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

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1.7rem;
        margin-bottom: 3.7rem;
        padding-left: 5.6rem;
    }

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

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

    .contact-card {
        padding: 4.3rem 3.3rem;
    }
}

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

    .nav-container {
        padding: 0 2rem;
        height: 68px;
    }

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

    #hero {
        padding: 118px 0 78px;
    }

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

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

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

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

    section {
        padding: 78px 0;
    }

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

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

    .profile-card {
        padding: 2.1rem;
    }

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

    .timeline-content {
        padding: 2.3rem;
    }

    .project-card {
        padding: 2.7rem 2.1rem;
    }

    .contact-card {
        padding: 3.7rem 2.3rem;
    }

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

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

    .contact-link {
        justify-content: center;
        padding: 1.15rem 2.5rem;
    }
}