/* Theme: Bamboo - Day 28 (Letter B): Inspired by tranquil bamboo forests, zen gardens, natural wood textures, Asian minimalism, sustainable growth, harmonious balance, organic patterns, peaceful simplicity, Japanese aesthetics, natural elegance */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700;900&family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap');

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

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

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16.5px;
    line-height: 1.85;
    color: #2d3e2f;
    background: linear-gradient(170deg, #fdfef9 0%, #f9faf4 22%, #f5f7ed 48%, #f7f9f0 72%, #fcfdf7 100%);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 8px,
            rgba(106, 124, 89, 0.018) 8px,
            rgba(106, 124, 89, 0.018) 10px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 185px,
            rgba(106, 124, 89, 0.012) 185px,
            rgba(106, 124, 89, 0.012) 188px
        );
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 12% 15%, rgba(106, 124, 89, 0.028) 0%, transparent 42%),
        radial-gradient(circle at 88% 85%, rgba(139, 160, 119, 0.025) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
}

#topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 254, 249, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(106, 124, 89, 0.18);
    box-shadow: 0 4px 22px rgba(45, 62, 47, 0.06);
    transition: all 0.38s ease;
}

#topnav.scrolled {
    background: rgba(253, 254, 249, 0.94);
    box-shadow: 0 6px 32px rgba(45, 62, 47, 0.095);
    border-bottom-color: rgba(106, 124, 89, 0.28);
}

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

.logo h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.65rem;
    font-weight: 600;
    color: #2d3e2f;
    margin: 0;
    letter-spacing: 0.55px;
    position: relative;
    padding-left: 3.25rem;
}

.logo h1::before {
    content: '🎋';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.15rem;
    animation: bambooSway 5.5s ease-in-out infinite;
}

@keyframes bambooSway {
    0%, 100% {
        transform: translateY(-50%) rotate(-2deg);
    }
    50% {
        transform: translateY(-50%) rotate(2deg);
    }
}

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

.nav-menu li a {
    display: block;
    padding: 0.85rem 1.85rem;
    color: #2d3e2f;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.88rem;
    transition: all 0.35s ease;
    position: relative;
    letter-spacing: 0.85px;
    border-radius: 2px;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 1.85rem;
    right: 1.85rem;
    height: 1px;
    background: #6a7c59;
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

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

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #6a7c59;
    background: rgba(106, 124, 89, 0.045);
}

.mobile-toggle {
    display: none;
    background: #6a7c59;
    border: none;
    color: #fdfef9;
    font-size: 1.75rem;
    width: 54px;
    height: 54px;
    cursor: pointer;
    transition: all 0.35s ease;
    border-radius: 2px;
    box-shadow: 0 6px 24px rgba(106, 124, 89, 0.28);
}

.mobile-toggle:hover {
    background: #5a6b4a;
    box-shadow: 0 8px 32px rgba(106, 124, 89, 0.38);
}

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

#hero::before {
    content: '🎍';
    position: absolute;
    top: 15%;
    right: 8%;
    font-size: 14.5rem;
    opacity: 0.035;
    animation: bambooFloat1 22s ease-in-out infinite;
    transform-origin: bottom center;
}

#hero::after {
    content: '🎋';
    position: absolute;
    bottom: 18%;
    left: 5%;
    font-size: 16.5rem;
    opacity: 0.03;
    animation: bambooFloat2 26s ease-in-out infinite;
    transform-origin: bottom center;
}

@keyframes bambooFloat1 {
    0%, 100% {
        transform: translateY(0) rotate(-3deg);
    }
    50% {
        transform: translateY(-35px) rotate(3deg);
    }
}

@keyframes bambooFloat2 {
    0%, 100% {
        transform: translateY(0) rotate(2deg);
    }
    50% {
        transform: translateY(-45px) rotate(-2deg);
    }
}

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

.hero-text {
    animation: bambooGrow 1.35s ease-out;
}

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

.hero-text h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: 4.85rem;
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 2.95rem;
    color: #2d3e2f;
    letter-spacing: -0.45px;
}

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

.hero-subtitle {
    font-size: 1.55rem;
    color: #4a5d4b;
    margin-bottom: 4.25rem;
    line-height: 1.72;
    font-weight: 400;
    letter-spacing: 0.25px;
}

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

.btn {
    display: inline-block;
    padding: 1.35rem 3.65rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.42s ease;
    font-size: 0.95rem;
    letter-spacing: 0.95px;
    font-family: 'Noto Sans JP', sans-serif;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 2px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left 0.65s ease;
    pointer-events: none;
}

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

.btn-primary {
    background: #6a7c59;
    color: #fdfef9;
    box-shadow: 0 12px 42px rgba(106, 124, 89, 0.28);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 55px rgba(106, 124, 89, 0.38);
    background: #5a6b4a;
}

.btn-secondary {
    background: rgba(253, 254, 249, 0.98);
    color: #6a7c59;
    border: 1px solid #6a7c59;
    box-shadow: 0 10px 35px rgba(106, 124, 89, 0.18);
}

.btn-secondary:hover {
    background: #6a7c59;
    color: #fdfef9;
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(106, 124, 89, 0.32);
}

.hero-image {
    animation: bambooGrow 1.35s ease-out 0.25s both;
}

.profile-card {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(22px);
    padding: 2.85rem;
    box-shadow: 
        0 0 0 1px rgba(106, 124, 89, 0.12),
        0 22px 72px rgba(45, 62, 47, 0.14);
    transition: all 0.52s ease;
    position: relative;
    border-radius: 2px;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, #6a7c59 0%, #8ba077 100%);
    border-radius: 2px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.52s ease;
}

.profile-card::after {
    content: '🎋';
    position: absolute;
    bottom: 45px;
    right: 45px;
    font-size: 6.85rem;
    opacity: 0.042;
}

.profile-card:hover {
    transform: translateY(-15px) scale(1.018);
    box-shadow: 
        0 0 0 1px rgba(106, 124, 89, 0.22),
        0 35px 98px rgba(45, 62, 47, 0.22);
}

.profile-card:hover::before {
    opacity: 1;
}

.profile-card img {
    width: 100%;
    margin-bottom: 2.55rem;
    box-shadow: 0 18px 58px rgba(45, 62, 47, 0.16);
    border-radius: 1px;
}

.profile-details h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.65rem;
    margin-bottom: 0.95rem;
    color: #2d3e2f;
    font-weight: 600;
    letter-spacing: -0.25px;
}

.profile-details p {
    color: #4a5d4b;
    margin-bottom: 2.75rem;
    line-height: 1.72;
    font-weight: 400;
}

.social-links a {
    display: inline-block;
    padding: 1.35rem 3.35rem;
    background: #8ba077;
    color: #fdfef9;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.95px;
    transition: all 0.42s ease;
    border-radius: 2px;
    box-shadow: 0 12px 42px rgba(139, 160, 119, 0.32);
    font-family: 'Noto Sans JP', sans-serif;
}

.social-links a:hover {
    background: #6a7c59;
    transform: translateY(-4px);
    box-shadow: 0 18px 55px rgba(106, 124, 89, 0.42);
}

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

.container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 3.85rem;
}

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

.section-header::before {
    content: '—';
    position: absolute;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.45rem;
    opacity: 0.35;
    color: #6a7c59;
}

.section-header h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 4.55rem;
    font-weight: 700;
    line-height: 1.15;
    color: #2d3e2f;
    letter-spacing: -0.65px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 85px;
    height: 2px;
    background: #6a7c59;
}

#experience {
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(15px);
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 315px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(106, 124, 89, 0.28);
}

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

.timeline-year {
    font-family: 'Noto Serif JP', serif;
    font-size: 7.25rem;
    font-weight: 700;
    color: rgba(106, 124, 89, 0.095);
    position: relative;
    z-index: 2;
    text-align: right;
    padding-right: 6.85rem;
    letter-spacing: -2.15px;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -130px;
    top: 50%;
    transform: translateY(-50%);
    width: 11px;
    height: 11px;
    background: #6a7c59;
    border-radius: 50%;
    box-shadow: 
        0 0 0 6px rgba(253, 254, 249, 1),
        0 0 0 7px rgba(106, 124, 89, 0.18);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    padding: 3.75rem;
    transition: all 0.48s ease;
    box-shadow: 
        0 0 0 1px rgba(106, 124, 89, 0.08),
        0 18px 62px rgba(45, 62, 47, 0.11);
    position: relative;
    border-radius: 2px;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #6a7c59;
    opacity: 0;
    transition: opacity 0.48s ease;
}

.timeline-content:hover {
    transform: translateX(18px);
    box-shadow: 
        0 0 0 1px rgba(106, 124, 89, 0.18),
        0 28px 85px rgba(45, 62, 47, 0.18);
    background: rgba(255, 255, 255, 0.92);
}

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

.timeline-content h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.65rem;
    margin-bottom: 0.85rem;
    color: #2d3e2f;
    font-weight: 600;
    letter-spacing: -0.25px;
}

.timeline-content h4 {
    color: #6a7c59;
    font-size: 1.35rem;
    margin-bottom: 2.15rem;
    font-weight: 600;
    letter-spacing: 0.35px;
}

.timeline-content p {
    color: #4a5d4b;
    line-height: 1.85;
    margin: 0;
}

.timeline-content a {
    color: #8ba077;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.35s ease;
}

.timeline-content a:hover {
    border-bottom-color: #8ba077;
    color: #6a7c59;
}

#ai {
    background: rgba(249, 250, 244, 0.52);
    backdrop-filter: blur(15px);
}

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

.project-card {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    padding: 5.15rem;
    transition: all 0.48s ease;
    position: relative;
    box-shadow: 
        0 0 0 1px rgba(106, 124, 89, 0.08),
        0 22px 72px rgba(45, 62, 47, 0.12);
    border-radius: 2px;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6a7c59 0%, #8ba077 100%);
}

.project-card::after {
    content: '🎍';
    position: absolute;
    top: 55px;
    right: 55px;
    font-size: 7.85rem;
    opacity: 0.032;
}

.project-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 0 0 1px rgba(106, 124, 89, 0.18),
        0 35px 98px rgba(45, 62, 47, 0.19);
    background: rgba(255, 255, 255, 0.92);
}

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

.project-header h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 3.65rem;
    color: #2d3e2f;
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.45px;
}

.project-client {
    color: #6a7c59;
    font-weight: 600;
    font-size: 1.35rem;
    margin-bottom: 3.05rem;
    letter-spacing: 0.35px;
}

.project-card > p {
    color: #4a5d4b;
    line-height: 1.85;
    margin-bottom: 3.75rem;
}

.project-impact {
    background: rgba(106, 124, 89, 0.055);
    padding: 2.75rem;
    color: #2d3e2f;
    line-height: 1.85;
    border-radius: 1px;
    border-left: 3px solid #6a7c59;
}

.project-impact strong {
    color: #8ba077;
    font-weight: 600;
}

#speaking {
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(15px);
}

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

.year-section {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    padding: 4.25rem;
    transition: all 0.48s ease;
    box-shadow: 
        0 0 0 1px rgba(106, 124, 89, 0.08),
        0 18px 62px rgba(45, 62, 47, 0.11);
    border-radius: 2px;
    position: relative;
}

.year-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #6a7c59;
    opacity: 0.28;
    transition: opacity 0.48s ease;
}

.year-section:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 0 0 1px rgba(106, 124, 89, 0.18),
        0 28px 85px rgba(45, 62, 47, 0.18);
    background: rgba(255, 255, 255, 0.92);
}

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

.year-section h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 4.55rem;
    margin-bottom: 3.75rem;
    color: #2d3e2f;
    text-align: center;
    padding-bottom: 2.75rem;
    border-bottom: 1px solid rgba(106, 124, 89, 0.15);
    font-weight: 600;
    letter-spacing: -0.55px;
}

.year-section.books {
    grid-column: span 2;
    background: #6a7c59;
}

.year-section.books::before {
    background: rgba(253, 254, 249, 0.28);
}

.year-section.books h3 {
    color: #fdfef9;
    border-bottom-color: rgba(253, 254, 249, 0.22);
}

.achievements {
    list-style: none;
}

.achievements li {
    padding: 1.85rem 0;
    color: #4a5d4b;
    border-bottom: 1px solid rgba(45, 62, 47, 0.065);
    line-height: 1.85;
    position: relative;
    padding-left: 3.25rem;
}

.achievements li::before {
    content: '—';
    position: absolute;
    left: 0;
    top: 1.85rem;
    font-size: 1.35rem;
    color: #6a7c59;
}

.year-section.books .achievements li {
    color: rgba(253, 254, 249, 0.92);
    border-bottom-color: rgba(253, 254, 249, 0.15);
}

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

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

.achievements strong {
    color: #2d3e2f;
    font-weight: 600;
}

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

#personal {
    background: rgba(249, 250, 244, 0.52);
    backdrop-filter: blur(15px);
}

#contact {
    background: linear-gradient(135deg, rgba(106, 124, 89, 0.038) 0%, rgba(139, 160, 119, 0.035) 100%);
    backdrop-filter: blur(15px);
}

.contact-card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(28px);
    padding: 7.85rem 7.15rem;
    text-align: center;
    box-shadow: 
        0 0 0 1px rgba(106, 124, 89, 0.12),
        0 35px 105px rgba(45, 62, 47, 0.15);
    max-width: 1300px;
    margin: 0 auto;
    border-radius: 2px;
}

.contact-card h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 5.85rem;
    margin-bottom: 3.75rem;
    color: #2d3e2f;
    font-weight: 700;
    letter-spacing: -0.85px;
}

.contact-card > p {
    font-size: 1.65rem;
    color: #4a5d4b;
    line-height: 1.85;
    margin-bottom: 6.15rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-link {
    display: flex;
    align-items: center;
    gap: 2.15rem;
    padding: 2.15rem 5.15rem;
    background: #6a7c59;
    color: #fdfef9;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.95px;
    transition: all 0.42s ease;
    border-radius: 2px;
    box-shadow: 0 18px 62px rgba(106, 124, 89, 0.32);
    font-family: 'Noto Sans JP', sans-serif;
}

.contact-link:hover {
    background: #5a6b4a;
    transform: translateY(-6px);
    box-shadow: 0 28px 85px rgba(106, 124, 89, 0.45);
}

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

#footer {
    background: #2d3e2f;
    padding: 6.15rem 0;
    text-align: center;
    color: rgba(253, 254, 249, 0.65);
    border-top: 1px solid rgba(106, 124, 89, 0.28);
}

#footer a {
    color: #8ba077;
    text-decoration: none;
    transition: color 0.35s ease;
    font-weight: 600;
}

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

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

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

    .hero-image {
        max-width: 625px;
        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.95rem;
        height: 68px;
    }

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

    .nav-menu {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(253, 254, 249, 0.98);
        backdrop-filter: blur(18px);
        flex-direction: column;
        padding: 4.25rem;
        gap: 0;
        box-shadow: 0 28px 72px rgba(45, 62, 47, 0.15);
        transform: translateY(-150%);
        transition: transform 0.52s ease;
        border-bottom: 1px solid rgba(106, 124, 89, 0.22);
    }

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

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

    .nav-menu li a {
        width: 100%;
        text-align: center;
        padding: 1.45rem;
        border-bottom: 1px solid rgba(45, 62, 47, 0.065);
    }

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

    .mobile-toggle {
        display: block;
    }

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

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

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

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 4.25rem;
        margin-bottom: 6.85rem;
        padding-left: 8.85rem;
    }

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

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

    .contact-card {
        padding: 6.45rem 5.15rem;
    }
}

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

    .nav-container {
        padding: 0 2.55rem;
        height: 62px;
    }

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

    #hero {
        padding: 132px 0 102px;
    }

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

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

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

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

    section {
        padding: 102px 0;
    }

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

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

    .profile-card {
        padding: 2.55rem;
    }

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

    .timeline-content {
        padding: 3.05rem;
    }

    .project-card {
        padding: 4.25rem 3.05rem;
    }

    .contact-card {
        padding: 5.65rem 3.05rem;
    }

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

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

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