/* Theme: Bamboo - Zen gardens, natural greens, peaceful minimalism, and organic growth */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;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: 95px;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.85;
    color: #2d3e2f;
    background: linear-gradient(180deg, #f5f9f4 0%, #e8f2e6 25%, #dbe9d8 50%, #d4e5d1 75%, #cfe2cb 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 1px, rgba(106, 140, 75, 0.02) 1px, rgba(106, 140, 75, 0.02) 2px),
        repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(106, 140, 75, 0.02) 1px, rgba(106, 140, 75, 0.02) 2px);
    background-size: 80px 80px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 15%, rgba(106, 140, 75, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 85%, rgba(149, 178, 126, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: bambooBreeze 35s ease-in-out infinite;
}

@keyframes bambooBreeze {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(0);
    }
    50% {
        opacity: 0.85;
        transform: translateX(20px);
    }
}

#topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 249, 244, 0.92);
    backdrop-filter: blur(18px) saturate(130%);
    border-bottom: 1px solid rgba(106, 140, 75, 0.15);
    box-shadow: 0 2px 18px rgba(106, 140, 75, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#topnav.scrolled {
    background: rgba(245, 249, 244, 0.96);
    box-shadow: 0 4px 24px rgba(106, 140, 75, 0.12);
}

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

.logo h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #3d5a3e;
    margin: 0;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 8px;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #6a8c4b 0%, #95b27e 100%);
    border-radius: 3px;
}

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

.nav-menu li a {
    display: block;
    padding: 0.9rem 1.6rem;
    color: #4a5f4b;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 0.3px;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 1.6rem;
    right: 1.6rem;
    height: 2px;
    background: linear-gradient(90deg, #6a8c4b 0%, #95b27e 100%);
    transform: scaleX(0);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

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

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

.mobile-toggle {
    display: none;
    background: transparent;
    border: 2px solid #6a8c4b;
    color: #6a8c4b;
    font-size: 1.3rem;
    width: 48px;
    height: 48px;
    cursor: pointer;
    transition: all 0.35s ease;
    border-radius: 2px;
}

.mobile-toggle:hover {
    background: rgba(106, 140, 75, 0.08);
    border-color: #3d5a3e;
    color: #3d5a3e;
}

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

#hero::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -8%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(106, 140, 75, 0.12) 0%, transparent 65%);
    border-radius: 50%;
    animation: zenFloat 28s ease-in-out infinite;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: -12%;
    left: -5%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(149, 178, 126, 0.1) 0%, transparent 65%);
    border-radius: 50%;
    animation: zenFloat 32s ease-in-out infinite reverse;
}

@keyframes zenFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(25px, -35px) scale(1.05);
    }
}

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

.hero-text {
    animation: slideInFromLeft 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

.hero-subtitle {
    font-size: 1.2rem;
    color: #5a6f5b;
    margin-bottom: 2.8rem;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.2px;
}

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

.btn {
    display: inline-block;
    padding: 1.15rem 2.6rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn:hover::after {
    width: 350px;
    height: 350px;
}

.btn-primary {
    background: linear-gradient(135deg, #6a8c4b 0%, #5a7a3e 100%);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 8px 22px rgba(106, 140, 75, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(106, 140, 75, 0.35);
    background: linear-gradient(135deg, #5a7a3e 0%, #4a6a33 100%);
}

.btn-secondary {
    background: transparent;
    color: #6a8c4b;
    border: 2px solid #6a8c4b;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
    background: rgba(106, 140, 75, 0.08);
    border-color: #3d5a3e;
    color: #3d5a3e;
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(106, 140, 75, 0.18);
}

.hero-image {
    animation: slideInFromRight 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

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

.profile-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(18px) saturate(120%);
    padding: 2.2rem;
    box-shadow: 
        0 18px 48px rgba(106, 140, 75, 0.12),
        inset 0 0 0 1px rgba(106, 140, 75, 0.08);
    border: 1px solid rgba(106, 140, 75, 0.12);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 28px 65px rgba(106, 140, 75, 0.18),
        inset 0 0 0 1px rgba(106, 140, 75, 0.12);
}

.profile-card img {
    width: 100%;
    margin-bottom: 1.6rem;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(106, 140, 75, 0.1);
    border-radius: 2px;
}

.profile-details h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.9rem;
    margin-bottom: 0.6rem;
    color: #2d3e2f;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.profile-details p {
    color: #5a6f5b;
    margin-bottom: 1.8rem;
    line-height: 1.7;
    font-weight: 400;
}

.social-links a {
    display: inline-block;
    padding: 0.95rem 2.2rem;
    background: linear-gradient(135deg, #6a8c4b 0%, #5a7a3e 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 22px rgba(106, 140, 75, 0.25);
    border-radius: 2px;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(106, 140, 75, 0.35);
    background: linear-gradient(135deg, #5a7a3e 0%, #4a6a33 100%);
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

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

.section-header::before {
    content: '';
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #6a8c4b 30%, #95b27e 50%, #6a8c4b 70%, transparent 100%);
    border-radius: 3px;
}

.section-header h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.25;
    color: #2d3e2f;
    letter-spacing: -0.3px;
}

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

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

.timeline::before {
    content: '';
    position: absolute;
    left: 95px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #6a8c4b 0%, #95b27e 50%, #6a8c4b 100%);
}

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

.timeline-year {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #6a8c4b;
    position: relative;
    z-index: 2;
    text-align: right;
    padding-right: 1.8rem;
    letter-spacing: 0.5px;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #6a8c4b 0%, #95b27e 100%);
    border: 3px solid rgba(245, 249, 244, 0.95);
    box-shadow: 
        0 0 0 5px rgba(106, 140, 75, 0.15),
        0 4px 12px rgba(106, 140, 75, 0.25);
    border-radius: 50%;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    padding: 2.4rem;
    border: 1px solid rgba(106, 140, 75, 0.12);
    border-left: 3px solid #6a8c4b;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 28px rgba(106, 140, 75, 0.08);
    border-radius: 2px;
}

.timeline-content:hover {
    transform: translateX(12px);
    box-shadow: 0 14px 42px rgba(106, 140, 75, 0.14);
    border-left-width: 4px;
    background: rgba(255, 255, 255, 0.85);
}

.timeline-content h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
    color: #2d3e2f;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.timeline-content h4 {
    color: #6a8c4b;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.2px;
}

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

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

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

#ai {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.5) 100%);
    backdrop-filter: blur(20px);
}

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

.project-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    padding: 2.8rem;
    border: 1px solid rgba(106, 140, 75, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 10px 35px rgba(106, 140, 75, 0.08);
    border-radius: 2px;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6a8c4b 0%, #95b27e 50%, #6a8c4b 100%);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 52px rgba(106, 140, 75, 0.14);
    background: rgba(255, 255, 255, 0.85);
}

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

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

.project-client {
    color: #6a8c4b;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 1.8rem;
    letter-spacing: 0.2px;
}

.project-card > p {
    color: #5a6f5b;
    line-height: 1.85;
    margin-bottom: 2.2rem;
}

.project-impact {
    background: rgba(106, 140, 75, 0.06);
    padding: 1.6rem;
    border-left: 3px solid #6a8c4b;
    color: #4a5f4b;
    line-height: 1.85;
    box-shadow: inset 0 0 20px rgba(106, 140, 75, 0.04);
    border-radius: 2px;
}

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

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

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

.year-section {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    padding: 2.5rem;
    border: 1px solid rgba(106, 140, 75, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 28px rgba(106, 140, 75, 0.08);
    border-radius: 2px;
}

.year-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 45px rgba(106, 140, 75, 0.14);
    background: rgba(255, 255, 255, 0.85);
}

.year-section h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
    color: #6a8c4b;
    text-align: center;
    padding-bottom: 1.2rem;
    border-bottom: 2px solid rgba(106, 140, 75, 0.2);
    font-weight: 700;
    letter-spacing: 0.3px;
}

.year-section.books {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(106, 140, 75, 0.12) 0%, rgba(149, 178, 126, 0.12) 100%);
    border: 1px solid rgba(106, 140, 75, 0.2);
    box-shadow: 0 12px 38px rgba(106, 140, 75, 0.12);
}

.achievements {
    list-style: none;
}

.achievements li {
    padding: 1.05rem 0;
    color: #5a6f5b;
    border-bottom: 1px solid rgba(106, 140, 75, 0.08);
    line-height: 1.85;
    position: relative;
    padding-left: 2.2rem;
}

.achievements li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #6a8c4b;
    font-size: 1.1rem;
    line-height: 1.85;
}

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

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

#personal {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.5) 100%);
    backdrop-filter: blur(20px);
}

#contact {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
}

.contact-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(18px);
    padding: 5rem 4.2rem;
    text-align: center;
    box-shadow: 0 24px 68px rgba(106, 140, 75, 0.14);
    max-width: 980px;
    margin: 0 auto;
    border: 1px solid rgba(106, 140, 75, 0.15);
    border-radius: 2px;
}

.contact-card h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 3.4rem;
    margin-bottom: 1.8rem;
    color: #2d3e2f;
    font-weight: 900;
    letter-spacing: -0.3px;
}

.contact-card > p {
    font-size: 1.15rem;
    color: #5a6f5b;
    line-height: 1.85;
    margin-bottom: 3.2rem;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

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

.contact-link {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1.25rem 2.8rem;
    background: linear-gradient(135deg, #6a8c4b 0%, #5a7a3e 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 32px rgba(106, 140, 75, 0.25);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.contact-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.contact-link:hover::after {
    width: 380px;
    height: 380px;
}

.contact-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 45px rgba(106, 140, 75, 0.35);
    background: linear-gradient(135deg, #5a7a3e 0%, #4a6a33 100%);
}

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

#footer {
    background: rgba(61, 90, 62, 0.95);
    backdrop-filter: blur(15px);
    padding: 3.2rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    border-top: 1px solid rgba(106, 140, 75, 0.2);
}

#footer a {
    color: #95b27e;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

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

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

    .hero-image {
        max-width: 500px;
        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: 85px;
    }

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

    .nav-menu {
        position: fixed;
        top: 85px;
        left: 0;
        right: 0;
        background: rgba(245, 249, 244, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2.5rem;
        gap: 0;
        box-shadow: 0 18px 45px rgba(106, 140, 75, 0.15);
        transform: translateY(-150%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid rgba(106, 140, 75, 0.2);
    }

    .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(106, 140, 75, 0.08);
    }

    .mobile-toggle {
        display: block;
    }

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

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

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

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

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

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

    .contact-card {
        padding: 4rem 2.8rem;
    }
}

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

    .nav-container {
        padding: 0 1.8rem;
        height: 78px;
    }

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

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

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

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

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

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

    section {
        padding: 75px 0;
    }

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

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

    .profile-card {
        padding: 1.8rem;
    }

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

    .timeline-content {
        padding: 2rem;
    }

    .project-card {
        padding: 2.4rem 1.8rem;
    }

    .contact-card {
        padding: 3.5rem 1.8rem;
    }

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

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

    .contact-link {
        justify-content: center;
        padding: 1.15rem 2rem;
        font-size: 0.9rem;
    }
}