/* Theme: Aurora - Day 27 (Letter A): Inspired by northern lights, celestial phenomena, ethereal glows, midnight blues, emerald greens, arctic skies, luminous waves, cosmic energy, polar radiance, mystical horizons */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat: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: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #1e3a4c;
    background: #fafcfd;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(52, 211, 153, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(96, 165, 250, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 50%, rgba(167, 139, 250, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 120px, rgba(52, 211, 153, 0.02) 120px, rgba(52, 211, 153, 0.02) 122px),
        repeating-linear-gradient(-45deg, transparent, transparent 120px, rgba(96, 165, 250, 0.02) 120px, rgba(96, 165, 250, 0.02) 122px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

#topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 252, 253, 0.92);
    border-bottom: 1px solid rgba(52, 211, 153, 0.15);
    box-shadow: 0 2px 20px rgba(30, 58, 76, 0.05);
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
}

#topnav.scrolled {
    background: rgba(250, 252, 253, 0.96);
    box-shadow: 0 4px 30px rgba(30, 58, 76, 0.08);
    border-bottom-width: 2px;
}

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

.logo h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #1e3a4c;
    margin: 0;
    letter-spacing: 1px;
    position: relative;
    padding-left: 3rem;
}

.logo h1::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #34d399;
    font-weight: 300;
}

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

.nav-menu li a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: #1e3a4c;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.35s ease;
    position: relative;
    letter-spacing: 0.5px;
    border-radius: 8px;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, #34d399 0%, #60a5fa 100%);
    transition: transform 0.35s 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: #34d399;
    background: rgba(52, 211, 153, 0.05);
}

.mobile-toggle {
    display: none;
    background: linear-gradient(135deg, #34d399 0%, #60a5fa 100%);
    border: none;
    color: #ffffff;
    font-size: 1.4rem;
    width: 48px;
    height: 48px;
    cursor: pointer;
    transition: all 0.35s ease;
    border-radius: 8px;
}

.mobile-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(52, 211, 153, 0.3);
}

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

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

#hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 65%);
    border-radius: 50%;
    animation: auroraFloat 32s ease-in-out infinite reverse;
}

@keyframes auroraFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(30px, -30px) scale(1.06);
        opacity: 0.85;
    }
}

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

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

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

.hero-text h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.2rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 2rem;
    color: #1e3a4c;
    letter-spacing: -0.5px;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b6a82;
    margin-bottom: 3rem;
    line-height: 1.65;
    font-weight: 400;
    letter-spacing: 0.3px;
    padding-left: 1.8rem;
    border-left: 3px solid #60a5fa;
}

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

.btn {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s ease;
    font-size: 0.95rem;
    letter-spacing: 0.6px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    border: 2px solid transparent;
    border-radius: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #34d399 0%, #60a5fa 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(52, 211, 153, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(52, 211, 153, 0.4);
}

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

.btn-secondary:hover {
    background: rgba(52, 211, 153, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 211, 153, 0.2);
}

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

.profile-card {
    background: #ffffff;
    padding: 2.5rem;
    box-shadow: 
        0 6px 20px rgba(30, 58, 76, 0.08),
        0 18px 50px rgba(52, 211, 153, 0.12);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(52, 211, 153, 0.15);
    border-radius: 16px;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #34d399 0%, #60a5fa 50%, #a78bfa 100%);
    border-radius: 16px 16px 0 0;
}

.profile-card::after {
    content: '✦';
    position: absolute;
    bottom: 35px;
    right: 35px;
    font-size: 5.5rem;
    opacity: 0.03;
    color: #34d399;
    font-weight: 300;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 6px 20px rgba(30, 58, 76, 0.08),
        0 28px 70px rgba(52, 211, 153, 0.18);
}

.profile-card img {
    width: 100%;
    margin-bottom: 2rem;
    border: 2px solid rgba(96, 165, 250, 0.2);
    box-shadow: 0 6px 20px rgba(30, 58, 76, 0.1);
    border-radius: 12px;
}

.profile-details h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    margin-bottom: 0.8rem;
    color: #1e3a4c;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.profile-details p {
    color: #4b6a82;
    margin-bottom: 2rem;
    line-height: 1.65;
    font-weight: 400;
}

.social-links a {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.35s ease;
    box-shadow: 0 6px 20px rgba(96, 165, 250, 0.3);
    font-size: 0.92rem;
    border-radius: 8px;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.4);
}

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

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

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

.section-header::before {
    content: '✦';
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.6rem;
    color: rgba(52, 211, 153, 0.2);
    font-weight: 300;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.8rem;
    font-weight: 600;
    line-height: 1.2;
    color: #1e3a4c;
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #34d399 30%, #60a5fa 70%, transparent 100%);
}

#experience {
    background: #ffffff;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #34d399 0%, #60a5fa 50%, #a78bfa 100%);
    opacity: 0.3;
}

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

.timeline-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #34d399;
    position: relative;
    z-index: 2;
    text-align: right;
    padding-right: 2.8rem;
    letter-spacing: 0.3px;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -64px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #34d399;
    border: 4px solid #fafcfd;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.2);
}

.timeline-content {
    background: #ffffff;
    padding: 2.8rem;
    transition: all 0.35s ease;
    box-shadow: 0 6px 22px rgba(30, 58, 76, 0.08);
    position: relative;
    border: 1px solid rgba(52, 211, 153, 0.12);
    border-left: 4px solid transparent;
    border-radius: 12px;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #34d399 0%, #60a5fa 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 12px 12px 0 0;
}

.timeline-content:hover {
    transform: translateX(12px);
    box-shadow: 0 12px 38px rgba(52, 211, 153, 0.15);
    border-left-color: #60a5fa;
}

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

.timeline-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 0.7rem;
    color: #1e3a4c;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.timeline-content h4 {
    color: #34d399;
    font-size: 1.05rem;
    margin-bottom: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

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

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

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

#ai {
    background: #fafcfd;
}

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

.project-card {
    background: #ffffff;
    padding: 3.2rem;
    transition: all 0.35s ease;
    position: relative;
    box-shadow: 0 8px 30px rgba(30, 58, 76, 0.08);
    border: 1px solid rgba(52, 211, 153, 0.12);
    border-radius: 16px;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #34d399 0%, #60a5fa 50%, #a78bfa 100%);
    border-radius: 16px 16px 0 0;
}

.project-card::after {
    content: '✦';
    position: absolute;
    top: 38px;
    right: 38px;
    font-size: 5.2rem;
    opacity: 0.025;
    color: #34d399;
    font-weight: 300;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(52, 211, 153, 0.16);
}

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

.project-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: #1e3a4c;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.project-client {
    color: #34d399;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 1.8rem;
    letter-spacing: 0.3px;
}

.project-card > p {
    color: #4b6a82;
    line-height: 1.7;
    margin-bottom: 2.6rem;
    font-weight: 400;
}

.project-impact {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.06) 0%, rgba(96, 165, 250, 0.04) 100%);
    padding: 1.8rem;
    color: #1e3a4c;
    line-height: 1.7;
    border-left: 4px solid #60a5fa;
    position: relative;
    border-radius: 8px;
}

.project-impact strong {
    color: #34d399;
    font-weight: 600;
}

#speaking {
    background: #ffffff;
}

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

.year-section {
    background: #ffffff;
    padding: 2.9rem;
    transition: all 0.35s ease;
    box-shadow: 0 6px 24px rgba(30, 58, 76, 0.08);
    position: relative;
    border: 1px solid rgba(52, 211, 153, 0.12);
    border-radius: 12px;
}

.year-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #34d399 0%, #60a5fa 100%);
    opacity: 0.4;
    transition: opacity 0.35s ease;
    border-radius: 12px 12px 0 0;
}

.year-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 42px rgba(52, 211, 153, 0.14);
}

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

.year-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin-bottom: 2.6rem;
    color: #1e3a4c;
    text-align: center;
    padding-bottom: 1.9rem;
    border-bottom: 1px solid rgba(52, 211, 153, 0.15);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.year-section.books {
    grid-column: span 2;
    background: linear-gradient(135deg, #34d399 0%, #60a5fa 100%);
}

.year-section.books::before {
    background: linear-gradient(90deg, rgba(167, 139, 250, 0.6) 0%, rgba(255, 255, 255, 0.4) 100%);
}

.year-section.books h3 {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.25);
}

.achievements {
    list-style: none;
}

.achievements li {
    padding: 1.25rem 0;
    color: #4b6a82;
    border-bottom: 1px solid rgba(52, 211, 153, 0.1);
    line-height: 1.7;
    position: relative;
    padding-left: 2.2rem;
    font-weight: 400;
}

.achievements li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 1.25rem;
    font-size: 1rem;
    color: #60a5fa;
    font-weight: 300;
}

.year-section.books .achievements li {
    color: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

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

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

.achievements strong {
    color: #1e3a4c;
    font-weight: 600;
}

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

#personal {
    background: #fafcfd;
}

#contact {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.05) 0%, rgba(96, 165, 250, 0.05) 100%);
}

.contact-card {
    background: #ffffff;
    padding: 5.5rem 4.5rem;
    text-align: center;
    box-shadow: 0 24px 70px rgba(52, 211, 153, 0.15);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border: 1px solid rgba(52, 211, 153, 0.15);
    border-radius: 20px;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #34d399 0%, #60a5fa 50%, #a78bfa 100%);
    border-radius: 20px 20px 0 0;
}

.contact-card::after {
    content: '✦';
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4.5rem;
    opacity: 0.05;
    color: #34d399;
    font-weight: 300;
}

.contact-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: #1e3a4c;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.contact-card > p {
    font-size: 1.15rem;
    color: #4b6a82;
    line-height: 1.7;
    margin-bottom: 3.8rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

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

.contact-link {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.3rem 3.2rem;
    background: linear-gradient(135deg, #34d399 0%, #60a5fa 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.35s ease;
    box-shadow: 0 8px 28px rgba(52, 211, 153, 0.3);
    border-radius: 10px;
}

.contact-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 38px rgba(52, 211, 153, 0.4);
}

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

#footer {
    background: #1e3a4c;
    padding: 3.2rem 0;
    text-align: center;
    color: rgba(250, 252, 253, 0.7);
    border-top: 1px solid rgba(52, 211, 153, 0.2);
}

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

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

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

    .hero-subtitle {
        border-left: none;
        border-top: 3px solid #60a5fa;
        padding-left: 0;
        padding-top: 1.8rem;
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }

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

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

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

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #fafcfd;
        flex-direction: column;
        padding: 2.6rem;
        gap: 0;
        box-shadow: 0 15px 45px rgba(30, 58, 76, 0.15);
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        border-bottom: 1px solid rgba(52, 211, 153, 0.15);
    }

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

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

    .nav-menu li a {
        width: 100%;
        text-align: center;
        padding: 1.05rem;
        border-bottom: 1px solid rgba(52, 211, 153, 0.1);
        border-radius: 0;
    }

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

    .mobile-toggle {
        display: block;
    }

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

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

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

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1.6rem;
        margin-bottom: 3.6rem;
        padding-left: 5.5rem;
    }

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

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

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

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

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

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

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

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

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

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

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

    section {
        padding: 75px 0;
    }

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

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

    .profile-card {
        padding: 2rem;
    }

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

    .timeline-content {
        padding: 2.2rem;
    }

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

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

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

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

    .contact-link {
        justify-content: center;
        padding: 1.1rem 2.4rem;
    }
}