/* =========================================================================
   Design System variables based on c-morinosato.com ("Medical Nature" theme)
   ========================================================================= */
:root {
    /* Colors */
    --primary-green: #349F87;
    --primary-green-hover: #2B8671;
    --deep-green: #002A1D;
    --bg-base: #F5F5EE;
    --bg-light: #F8F8F3;
    --bg-white: #FFFFFF;
    --accent-orange: #EFA661;
    --text-gray: #7B8F85;

    /* Typography */
    --font-main: 'Zen Kaku Gothic New', "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
    --font-en: 'Roboto Condensed', sans-serif;

    /* Shapes & Spacing */
    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 50px;
    --radius-hero: 80px;

    /* Shadows */
    --shadow-soft: 0 8px 30px rgba(0, 42, 29, 0.05);
    --shadow-hover: 0 12px 40px rgba(0, 42, 29, 0.08);

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* =========================================================================
   Reset & Base Styles
   ========================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-base);
    color: var(--deep-green);
    line-height: 1.8;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* =========================================================================
   Typography & Utilities
   ========================================================================= */
.en-text {
    font-family: var(--font-en);
}

.text-center {
    text-align: center;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: var(--font-en);
    color: var(--primary-green);
    font-size: 14px;
    letter-spacing: 0.1em;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--deep-green);
}

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--primary-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 159, 135, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.btn-outline:hover {
    background-color: var(--primary-green);
    color: var(--bg-white);
}

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

/* =========================================================================
   Header & Navigation
   ========================================================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 42, 29, 0.05);
    padding: 8px 0;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 42, 29, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--deep-green);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 20px;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 32px;
}

.nav-list a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--deep-green);
}

.nav-list a:hover {
    color: var(--primary-green);
}

.nav-jp {
    font-size: 14px;
    font-weight: 700;
}

.nav-en {
    font-family: var(--font-en);
    font-size: 10px;
    color: var(--text-gray);
    letter-spacing: 0.1em;
}

.nav-list a:hover .nav-en {
    color: var(--primary-green);
}

.nav-btn-wrapper {
    display: none;
}

.nav-btn-wrapper a {
    flex-direction: row;
}

.mobile-menu-btn {
    display: none;
    background: var(--bg-white);
    border: 1px solid rgba(0, 42, 29, 0.1);
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: relative;
    z-index: 2000;
    box-shadow: 0 4px 15px rgba(52, 159, 135, 0.1);
    transition: 0.3s;
}

.mobile-menu-btn.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.menu-icon-lines {
    position: absolute;
    top: 15px;
    left: 17px;
    width: 24px;
    height: 14px;
}

.menu-icon-lines span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary-green);
    position: absolute;
    left: 0;
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-menu-btn.active .menu-icon-lines span {
    background-color: white;
}

.menu-icon-lines span:nth-child(1) {
    top: 0;
}

.menu-icon-lines span:nth-child(2) {
    top: 6px;
}

.menu-icon-lines span:nth-child(3) {
    top: 12px;
}

.menu-text {
    position: absolute;
    bottom: 11px;
    left: 0;
    width: 100%;
    text-align: center;
    color: var(--primary-green);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-family: var(--font-en);
    transition: 0.3s;
}

.mobile-menu-btn.active .menu-text {
    color: white;
}

.nav-icon {
    display: none;
}

/* =========================================================================
   Hero Section
   ========================================================================= */
.hero {
    padding-top: 100px;
    /* offset header */
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-base);
    overflow: hidden;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    padding: 0;
}

.hero-content {
    flex: 1;
    padding: 0 40px 0 60px;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--bg-white);
    color: var(--accent-orange);
    border-radius: var(--radius-lg);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-soft);
}

.hero-title {
    font-size: 48px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--deep-green);
    letter-spacing: 0.02em;
}

.hero-description {
    font-size: 17px;
    color: var(--deep-green);
    margin-bottom: 40px;
    line-height: 2;
    letter-spacing: 0.05em;
}

.hero-description strong {
    color: var(--primary-green);
    font-size: 1.05em;
    margin: 0 2px;
    font-weight: 700;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.hero-visual {
    flex: 1.2;
    position: relative;
    height: 80vh;
    min-height: 600px;
}

.hero-slideshow-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light);
    border-radius: var(--radius-hero) 0 0 var(--radius-hero);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.05);
    /* Start slightly larger */
    transition: opacity 2s ease-in-out, transform 8s linear;
    /* Smooth fade and zoom transition */
    will-change: opacity, transform;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.0);
    /* Zoom out slightly while active */
}

/* =========================================================================
   News Section
   ========================================================================= */
.news {
    background-color: var(--bg-white);
    padding: 100px 0 60px;
    /* Reduced bottom padding */
    border-radius: var(--radius-hero) var(--radius-hero) 0 0;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.news-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.news-header {
    flex: 1;
    max-width: 300px;
}

.news-list {
    flex: 2;
    display: flex;
    flex-direction: column;
}

.news-item {
    border-bottom: 1px dashed #C4C2BE;
}

.news-item:first-child {
    border-top: 1px dashed #C4C2BE;
}

.news-item a {
    display: flex;
    flex-direction: column;
    padding: 24px 0;
    transition: var(--transition-smooth);
}

.news-item a:hover {
    padding-left: 12px;
    color: var(--primary-green);
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.news-meta time {
    color: var(--text-gray);
    font-size: 14px;
    letter-spacing: 0.05em;
}

.news-category {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid currentColor;
}

.tag-event {
    color: #EFA661;
}

.tag-info {
    color: var(--primary-green);
}

.tag-report {
    color: #5B8CBA;
}

.news-item-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--deep-green);
}

.news-item a:hover .news-item-title {
    color: var(--primary-green);
}

.desktop-only {
    display: inline-flex;
}

.mobile-only {
    display: none;
}

.mt-24 {
    margin-top: 24px;
}

/* =========================================================================
   About Section
   ========================================================================= */
.about {
    background-color: var(--bg-white);
    border-radius: var(--radius-hero) var(--radius-hero) 0 0;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.about-card {
    background: var(--bg-base);
    padding: 48px 32px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition-smooth);
}

.about-card:hover {
    transform: translateY(-8px);
    background: var(--bg-light);
    box-shadow: var(--shadow-soft);
}

.about-card .icon-box {
    width: 80px;
    height: 80px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-soft);
}

.icon-svg {
    font-size: 32px;
}

.about-card h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--deep-green);
}

.about-card p {
    color: var(--text-gray);
    font-size: 15px;
}

/* =========================================================================
   Activity Section
   ========================================================================= */
.activity {
    background-color: var(--bg-light);
}

.activity-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.activity-image {
    flex: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.activity-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.activity-info {
    flex: 1;
}

.activity-desc {
    margin-bottom: 32px;
    color: var(--text-gray);
}

.activity-list {
    list-style: none;
}

.activity-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 10px rgba(0, 42, 29, 0.02);
}

.activity-list-icon {
    width: 24px;
    height: 24px;
    background-color: var(--primary-green);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    margin-top: 2px;
}

.activity-list-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%) rotate(45deg);
    width: 6px;
    height: 10px;
    border: solid var(--bg-white);
    border-width: 0 2px 2px 0;
}

.activity-list-content strong {
    display: block;
    margin-bottom: 4px;
    font-size: 18px;
    color: var(--deep-green);
}

.activity-list-content p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

/* =========================================================================
   Staff Section
   ========================================================================= */
.staff {
    background-color: var(--bg-white);
}

.staff-intro {
    max-width: 700px;
    margin: 0 auto 60px;
}

.staff-group-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 24px;
    background-color: var(--bg-light);
}

.staff-message {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 2;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.staff-card {
    background: var(--bg-base);
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.staff-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.staff-image {
    width: 100%;
    aspect-ratio: 1;
    background-color: #E2E8E4;
    /* Placeholder color */
    overflow: hidden;
}

.staff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.staff-card:hover .staff-image img {
    transform: scale(1.05);
}

.staff-info {
    padding: 20px;
    text-align: center;
}

.staff-info h4 {
    font-family: var(--font-en);
    font-size: 20px;
    color: var(--deep-green);
    margin-bottom: 4px;
}

.staff-role {
    font-size: 13px;
    color: var(--primary-green);
    font-weight: 700;
}

/* =========================================================================
   Schedule Section
   ========================================================================= */
.schedule {
    background-color: var(--bg-base);
}

.schedule-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 60px;
    box-shadow: var(--shadow-soft);
}

.schedule-row {
    display: flex;
    border-bottom: 1px dashed #C4C2BE;
    padding: 32px 0;
}

.schedule-row:first-child {
    padding-top: 0;
}

.schedule-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.schedule-label {
    width: 200px;
    font-weight: 700;
    color: var(--primary-green);
    font-size: 16px;
    flex-shrink: 0;
}

.schedule-content {
    flex: 1;
}

.schedule-content .large-text {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.schedule-content .time-text {
    font-size: 18px;
    color: var(--text-gray);
    letter-spacing: 0.05em;
}

.address-text {
    color: var(--text-gray);
    margin-bottom: 12px;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 14px;
}

.map-link:hover {
    opacity: 0.8;
}

/* =========================================================================
   Contact Section
   ========================================================================= */
.contact {
    background-color: var(--bg-white);
}

.contact-box {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 80px 40px;
    border: 1px solid rgba(0, 42, 29, 0.05);
}

.contact-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-text {
    color: var(--text-gray);
    margin-bottom: 40px;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* =========================================================================
   Footer
   ========================================================================= */
.footer {
    background-color: var(--deep-green);
    color: var(--bg-white);
    padding: 60px 0 40px;
    text-align: center;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.copyright {
    font-family: var(--font-en);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
}

/* =========================================================================
   Floating Action Button (FAB)
   ========================================================================= */
.fab {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background-color: var(--primary-green);
    color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-hover);
    z-index: 999;
    font-weight: 700;
    font-size: 14px;
}

.fab:hover {
    background-color: var(--primary-green-hover);
    transform: translateY(-4px);
}

/* =========================================================================
   Modal
   ========================================================================= */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 42, 29, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--bg-white);
    width: 90%;
    max-width: 500px;
    border-radius: var(--radius-md);
    padding: 40px;
    z-index: 2001;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-gray);
    cursor: pointer;
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.modal-image-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #eee;
}

.modal-title-group h3 {
    font-family: var(--font-en);
    font-size: 24px;
    color: var(--deep-green);
}

.modal-title-group span {
    font-size: 13px;
    color: var(--primary-green);
    font-weight: 700;
}

.modal-body p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
}

/* =========================================================================
   Animations (Intersection Observer)
   ========================================================================= */
.animate-slide-up,
.animate-fade-in,
.animate-slide-left,
.animate-slide-right {
    opacity: 0;
    visibility: hidden;
}

.animate-slide-up {
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.animate-slide-left {
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.animate-slide-right {
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.animate-fade-in {
    transition: opacity 1s ease;
}

.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* =========================================================================
   Responsive Design
   ========================================================================= */
@media (max-width: 900px) {
    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .hero {
        padding-top: 0;
        min-height: 100vh;
        position: relative;
    }

    .hero-inner {
        display: block;
        height: 100vh;
        padding: 0;
    }

    .hero-visual {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
    }

    .hero-slideshow-wrapper {
        border-radius: 0 0 var(--radius-hero) var(--radius-hero);
    }

    .hero-slideshow-wrapper::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.3);
        /* Add soft white overlay to improve text readability if needed */
        z-index: 5;
    }

    .hero-content {
        position: absolute;
        top: 45%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        padding: 32px 24px;
        background: rgba(245, 245, 238, 0.65);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        border-radius: var(--radius-md);
        text-align: center;
        z-index: 10;
        box-shadow: var(--shadow-soft);
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 14.5px;
        margin-bottom: 32px;
        color: var(--deep-green);
    }

    .hero-btns {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 12px;
    }

    .hero-btns .btn {
        padding: 12px 16px;
        font-size: 13px;
        white-space: nowrap;
        flex: 1;
    }

    .news-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }

    .news-header {
        max-width: 100%;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: inline-flex !important;
    }

    .activity-wrapper {
        flex-direction: column;
    }

    .header {
        padding: 4px 0;
    }

    .logo a {
        font-size: 20px;
    }

    .logo-icon {
        font-size: 16px;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 2000;
        width: 48px;
        height: 48px;
    }

    .menu-icon-lines {
        top: 11px;
        left: 11px;
    }

    .menu-text {
        font-size: 8px;
        bottom: 7px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--primary-green);
        padding: 60px 24px 60px;
        transition: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 1500;
        overflow-y: auto;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        display: block;
        width: 100%;
        margin-top: 20px;
    }

    .nav-list>li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-list>li:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-list>li.nav-btn-wrapper {
        border: none;
        padding-top: 40px;
        display: block;
    }

    .nav-list a {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 24px 16px;
        gap: 16px;
        color: var(--bg-white) !important;
    }

    .nav-icon {
        display: block;
        width: 24px;
        height: 24px;
        margin: 0;
        color: var(--bg-white);
        flex-shrink: 0;
    }

    .nav-jp {
        font-size: 18px;
        font-weight: 700;
        flex: 1;
        color: var(--bg-white) !important;
    }

    .nav-en {
        font-size: 13px;
        letter-spacing: 0.15em;
        color: rgba(255, 255, 255, 0.7) !important;
    }

    .nav-list .btn-primary {
        background-color: var(--bg-white);
        color: var(--primary-green) !important;
        justify-content: center;
        padding: 18px;
        border-radius: var(--radius-lg);
    }

    .schedule-row {
        flex-direction: column;
        gap: 16px;
        padding: 24px 0;
    }

    .schedule-card {
        padding: 40px 24px;
        border-radius: var(--radius-md);
    }

    .contact-box {
        padding: 60px 24px;
    }

    .contact-title {
        font-size: 24px;
    }

    .modal-content {
        padding: 32px 24px;
        width: 95%;
    }

    .modal-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}