:root {
    --bg-color: #F7EBDE;
    --surface-light: #ffffff;
    --surface-tint: #faf6ea;
    --wood: #EEDCC7;
    --wood-dark: #8c7355;
    --text-color: #3d3d3d;
    --text-muted: #666666;
    --accent: #5e7a4a; /* Sage Green */
    --accent-light: #d6e2cc;
    --accent-orange: #d98a53; /* Warm Orange from the 5-dish plan */
    --glass-bg: rgba(252, 248, 229, 0.9);
    --glass-border: rgba(94, 122, 74, 0.1);
    --glass-shadow: 0 10px 30px 0 rgba(140, 115, 85, 0.08);
    --font-heading: 'Zen Maru Gothic', sans-serif;
    --font-display: 'Bodoni Moda', serif;
    --font-sans: 'Mulish', sans-serif;
    --font-jp: 'Noto Sans JP', sans-serif;
    --font-jp-display: 'Zen Maru Gothic', sans-serif;
}

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

/* Set background on html (not just body) so Chrome paints the canvas color even when overflow-x: clip suppresses body→canvas propagation. */
html {
    overflow-x: clip;
    background: var(--bg-color);
}

body {
    font-family: var(--font-sans);
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; color: var(--accent); }
a { text-decoration: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }

/* Typography */
h1 { font-size: 3rem; letter-spacing: -0.01em; margin-bottom: 1rem; line-height: 1.2; color: #445634;}
h2 { font-size: 2.2rem; margin-bottom: 0.5rem; text-align: center; color: #445634;}
h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }

.jp-subtitle {
    font-family: var(--font-jp-display);
    font-size: 1rem;
    color: #777;
    letter-spacing: 0.05em;
    font-weight: 500;
}
.section-subtitle { text-align: center; font-family: var(--font-jp); font-size: 1rem; color: #666; margin-bottom: 3rem; font-weight: 500; }

/* Navigation */
#navbar {
    position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 1000;
    background: var(--surface-light);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 5%; max-width: 1200px; margin: 0 auto; }
.logo a { font-size: 1.4rem; font-weight: 500; color: var(--accent); white-space: nowrap; }

.nav-links { display: flex; gap: 1.8rem; align-items: center; }
.nav-links a { font-size: 1rem; font-weight: 700; color: var(--wood-dark); transition: color 0.3s; white-space: nowrap; font-family: var(--font-jp-display); }
.nav-links a:hover { color: var(--accent); text-decoration: underline; text-decoration-color: var(--accent-orange); text-underline-offset: 4px; text-decoration-thickness: 2px; }
.nav-links a.active { color: var(--accent); text-decoration: underline; text-decoration-color: var(--accent-orange); text-underline-offset: 4px; text-decoration-thickness: 2px; }
.nav-links a.dropbtn.active { color: var(--accent); text-decoration: underline; text-decoration-color: var(--accent-orange); text-underline-offset: 4px; text-decoration-thickness: 2px; }

.dropdown { position: relative; display: inline-block; }
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--surface-light);
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1001;
    border-radius: 12px;
    padding: 0.5rem 0;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid rgba(0,0,0,0.05);
}
.dropdown-content a {
    color: var(--wood-dark);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    text-align: left;
    transition: background 0.2s, color 0.2s;
    font-size: 1rem;
}
.dropdown-content a:hover {
    background-color: rgba(94,122,74,0.05);
    color: var(--accent);
}
.dropdown:hover .dropdown-content { display: block; }


.nav-right { display: flex; align-items: center; gap: 1.5rem; }

.lang-toggle {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 1rem; font-weight: 600;
    background: var(--surface-tint); padding: 0.4rem 1rem; border-radius: 30px;
}
.lang-opt { cursor: pointer; color: #999; transition: color 0.3s; position: relative; padding-bottom: 2px; }
.lang-opt::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: #d98a53; transition: width 0.2s ease; }
.lang-opt:hover::after { width: 100%; }
.lang-opt.active { color: var(--accent); }
.lang-divider { color: #ccc; }

body[data-lang="en"] .lang-ja { display: none !important; }
body[data-lang="ja"] .lang-en { display: none !important; }

/* Area panel decorative images */
.area-panel { position: relative; }
.area-panel-content { position: relative; z-index: 1; }
.area-img-left       { position: absolute; left: 14px;  bottom: 76px; height: 120px; width: auto; opacity: 0.88; pointer-events: none; transform: rotate(-20deg); transform-origin: center; }
.area-img-right      { position: absolute; right: 14px; top: 24px;    height: 120px; width: auto; opacity: 0.88; pointer-events: none; transform: rotate(20deg);  transform-origin: center; }
.area-img-left-flip  { position: absolute; left: 14px;  top: 24px;    height: 120px; width: auto; opacity: 0.88; pointer-events: none; transform: rotate(20deg);  transform-origin: center; }
.area-img-right-flip { position: absolute; right: 14px; bottom: 76px; height: 120px; width: auto; opacity: 0.88; pointer-events: none; transform: rotate(-20deg); transform-origin: center; }

/* Global Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    border-radius: 40px; /* Highly rounded for kidsy theme */
    font-family: var(--font-jp-display);
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer; border: none; font-size: 1rem;
}
.btn-primary { background: var(--accent); color: white !important; }
.btn-primary:hover { background: #445634; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(94,122,74,0.3); }
.btn-outline { border: 2px solid var(--accent); color: var(--accent); background: transparent; }
.btn-outline:hover { background: var(--accent); color: white; }

/* Global Badges/Pills */
.pill {
    display: inline-block;
    color: white;
    padding: 0.4rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-family: var(--font-jp);
    font-size: 1rem;
    white-space: nowrap;
}
.pill.green { background: #62824b; }
.pill.orange { background: #df914b; }
.pill-center { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); }

/* Whimsical Specifics */
.curved-header {
    background: #f1eddd;
    border-bottom-left-radius: 50% 10%;
    border-bottom-right-radius: 50% 10%;
    padding: 160px 5% 3rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

/* Hero fade-in animation (pure opacity, no slide) */
@keyframes fadeReveal {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.hero-anim {
    opacity: 0;
    animation: fadeReveal 1.6s ease 0.15s both;
}

/* Multi-line brush underline — uses box-decoration-break so each line gets the stroke */
.brush-underline-ml {
    display: inline;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 12'%3E%3Cpath d='M0,6 C15,2 45,10 60,6' stroke='%23d98a53' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-position: left bottom;
    background-size: 60px 12px;
    padding-bottom: 10px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

/* Brush stroke underline for section titles */
.brush-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}
.brush-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 12'%3E%3Cpath d='M0,6 C15,2 45,10 60,6' stroke='%23d98a53' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x left center / 60px 12px;
    pointer-events: none;
    clip-path: inset(0 100% 0 0);
}

@keyframes drawStroke {
    from { clip-path: inset(0 100% 0 0); }
    to   { clip-path: inset(0 0% 0 0); }
}
@keyframes strokeSettle {
    0%   { filter: drop-shadow(0 0px 0px rgba(217,138,83,0)); }
    55%  { filter: drop-shadow(0 2px 10px rgba(217,138,83,0.45)); }
    100% { filter: drop-shadow(0 1px 4px rgba(217,138,83,0.12)); }
}
.brush-underline.stroke-revealed::after {
    animation:
        drawStroke  0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both,
        strokeSettle 1.1s ease-out 0.85s both;
}

/* Service Cards / Core Playful Cards */
.playful-card {
    background: white;
    border-radius: 30px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(100,100,80,0.06);
    text-align: center;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}
.playful-card:hover { transform: translateY(-5px); }

.playful-card img { width: 100%; border-radius: 20px; margin: 1.5rem 0; object-fit: cover;}
.playful-card h3 { font-size: 1.8rem; color: #435b3e; margin-bottom: 0.3rem; }
.playful-card .sub-title { font-weight: bold; font-size: 1rem; margin-bottom: 2rem; font-family: var(--font-jp); color: #777; text-align: left;}
.playful-card-footer { background: var(--surface-tint); border-radius: 20px; padding: 1.5rem; color: #5a4b3b; font-family: var(--font-jp); text-align: center; }

/* Menus/Options 3-column layout */
.menu-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; align-items: stretch; margin-bottom: 4rem; padding-top: 30px; }
.menu-card { background: white; border-radius: 30px; border: 2px solid var(--surface-tint); box-shadow: 0 8px 25px rgba(0,0,0,0.04); text-align: center; position: relative; display: flex; flex-direction: column; padding: 3rem 2rem 2rem; margin-top: 30px;}
.menu-card .circle-num {
    position: absolute; top: -25px; left: 50%; transform: translateX(-50%);
    width: 50px; height: 50px; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: bold; font-size: 1.2rem;
}
.circle-num.c-green { background: #62824b; }
.circle-num.c-orange { background: #df914b; }

.menu-card h3 { font-size: 1.4rem; color: #445634; margin-bottom: 0.5rem; }
.menu-card img { width: 100%; height: 200px; object-fit: cover; border-radius: 16px; margin-bottom: 1.5rem;}
.menu-card-body { text-align: left; font-family: var(--font-jp); font-size: 1rem; color: #555; flex-grow: 1; display: flex; flex-direction: column;}
.menu-card-body .desc { margin-bottom: 1.5rem; line-height: 1.6; flex-grow: 1; }

.rec-pill { display: inline-block; background: #f3edd0; color: #6b5a38; border-radius: 20px; padding: 0.4rem 1.2rem; font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.rec-pill.orange { background: #fbebdc; color: #9f5b24; }
.rec-list { list-style: none; padding-left: 0; margin-left: 0; }
.rec-list li { position: relative; padding-left: 1.4rem; margin-bottom: 0.6rem; font-size: 1rem; line-height: 1.5;}
.rec-list li::before { content: '•'; position: absolute; left: 0; color: var(--wood-dark); font-weight: bold; font-size: 1.2rem; line-height: 1;}

.hearing-banner { background: #fbebdc; border-radius: 30px; padding: 2.5rem 3rem; display: flex; align-items: center; gap: 2.5rem; margin: 0 auto; text-align: left; }
.hearing-icon { font-size: 3.5rem; }
.hearing-content h4 { color: #8e5831; font-size: 1.2rem; margin-bottom: 0.5rem; }
.hearing-content p { font-size: 1rem; color: #666; font-family: var(--font-jp); line-height: 1.8; margin: 0; }

/* Hand-written dividers */
.h-divider { max-width: 960px; margin: 5rem auto; padding: 0 5%; clear: both; }
.h-divider svg { width: 100%; height: 14px; display: block; }
.v-divider { display: flex; justify-content: center; margin: 1.5rem 0; }
.v-divider svg { width: 16px; height: 80px; }

/* Contact Form */
.contact-section { max-width: 800px; margin: 0 auto; background: white; padding: 4rem; border-radius: 30px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 700; font-size: 1rem; color: #445634; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; min-width: 0; max-width: 100%; padding: 1rem 1.2rem; border: 2px solid var(--surface-tint); border-radius: 16px;
    background: #fafaf5; font-family: inherit; font-size: 1rem; transition: border-color 0.3s; box-sizing: border-box;
    -webkit-appearance: none; appearance: none; line-height: 1.5;
}
.form-group input:not(textarea), .form-group select { height: 3.5rem; }
.form-group select {
    color: #2a2a2a;
    -webkit-text-fill-color: #2a2a2a;
}
.form-group select option {
    color: #2a2a2a;
}
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
    color: #2a2a2a;
    -webkit-text-fill-color: #2a2a2a;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); background: white;}
.field-error input, .field-error select, .field-error textarea { border-color: #e05454 !important; background-color: #fff8f8 !important; }
.error-msg { color: #e05454; font-size: 1rem; margin-top: 5px; display: block; }

/* Footer */
footer { background: var(--surface-light); padding: 5rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 4rem; margin-bottom: 4rem; }
.footer-logo { font-size: 1.5rem; font-weight: 700; color: var(--accent); margin-bottom: 1rem; }
.footer-brand p { font-size: 1rem; color: #777; }
.footer-links h4, .footer-contact h4 { color: var(--wood-dark); margin-bottom: 1.5rem; font-size: 1.2rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a, .footer-contact p { color: #666; font-size: 1rem; }
.footer-links a:hover { color: var(--accent); }

/* Playful floating decorators */
.decor-leaf { position: absolute; z-index: 1; opacity: 0.6; width: auto; pointer-events: none;}
.decor-lg { font-size: 8rem; }
.decor-sm { font-size: 4rem; }

/* Mobile Menu */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { width: 26px; height: 3px; background: var(--accent); border-radius: 3px; display: block; transition: transform 0.3s, opacity 0.3s; }
.mobile-menu {
    position: fixed; top: -100%; left: 0; width: 100%; height: 100vh;
    background: var(--bg-color); z-index: 999;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; transition: 0.5s ease;
}
.mobile-menu.active { top: 0; }
.mobile-link { font-size: 1.5rem; font-weight: 700; color: var(--accent); font-family: var(--font-jp-display); }
.ig-link { display: flex; align-items: center; gap: 0.4rem; color: #888; transition: color 0.2s; text-decoration: none; position: relative; padding-bottom: 2px; }
.ig-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: #d98a53; transition: width 0.2s ease; }
.ig-link:hover { color: var(--accent); }
.ig-link:hover::after { width: 100%; }
@media (max-width: 900px) { .nav-ig { display: none; } }

@media (max-width: 900px) {
    .area-img-left, .area-img-right, .area-img-left-flip, .area-img-right-flip { height: 70px; }
    .hero-title-text br, .hero-desc-text br { display: none; }
    .hero-desc-text { text-align: left; }
    .section-subtitle { text-align: left; }
    .curved-header { padding: 120px 5% 3rem; }
    .menu-cards, .plan-cards { grid-template-columns: 1fr; gap: 3rem; margin: 0 auto; max-width: 500px;}
    .hearing-banner { flex-direction: column; text-align: center; gap: 1.5rem; padding: 2rem; }

    .nav-links { display: none; }
    .hamburger { display: flex; }
    h1 { font-size: 2.2rem; }

    /* Hide lang toggle from navbar, show it in mobile menu instead */
    #navbar .lang-toggle { display: none; }
}

.mobile-lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1rem;
    background: rgba(255,255,255,0.3);
    padding: 0.6rem 2rem;
    border-radius: 30px;
}
.mobile-lang-toggle .lang-opt { cursor: pointer; color: rgba(94,122,74,0.5); transition: color 0.3s; position: relative; padding-bottom: 2px; }
.mobile-lang-toggle .lang-opt.active { color: var(--accent); }
.mobile-lang-toggle .lang-divider { color: #bbb; }

@media (min-width: 769px) {
    .menu-select-grid { flex-direction: row !important; align-items: stretch; }
    .menu-select-grid > div { flex: 1; }
}

/* iPad (portrait + landscape) */
@media (max-width: 1024px) {
    .container { padding: 0 24px; }
    section.container, section[class*="container"] { padding-left: 24px; padding-right: 24px; }
}

/* Mobile */
@media (max-width: 768px) {
    .container { padding: 0 24px; }
    section { padding-left: 24px !important; padding-right: 24px !important; }
    footer .container { padding: 0 24px; }
    .playful-card { padding: 1.5rem; }
    .menu-card { padding: 2rem 1.2rem 1.5rem; }
    .hearing-banner { margin-left: 0; margin-right: 0; }
    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.5rem; }
}

/* New Service Hero Styles */
.new-service-hero {
    position: relative;
    background: linear-gradient(135deg, #FFFDF9 0%, #F4EBE0 100%);
    min-height: 90vh;
    padding-top: 140px;
    display: flex;
    overflow: hidden;
    margin-bottom: 0;
}

/* Full-width curve at hero bottom (same path as section waves → #F7EBDE) */
.new-service-hero-bottom-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 90px;
    line-height: 0;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
}
.new-service-hero-bottom-wave svg {
    display: block;
    width: 100%;
    min-width: 1440px;
    height: 90px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Hero wave entrance animation */
@keyframes hero-wave-entrance {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.hero-wave-animated {
    position: absolute !important;
    left: 0 !important;
    width: 200% !important;
    min-width: 2880px !important;
    height: 90px !important;
    display: block !important;
    animation: hero-wave-entrance 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Wavy line below headline */
.hero-wavy-line {
    width: 100%;
    max-width: 320px;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 12'%3E%3Cpath d='M0,6 C15,2 45,10 60,6' stroke='%23d98a53' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x left center / 60px 12px;
    margin: 1.5rem 0 2rem;
}

.hero-photo-container {
    position: absolute;
    bottom: 0;
    top: 80px;
    right: 0;
    width: 45%;
    z-index: 2;
}

.hero-photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.new-service-hero .container {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: flex-start;
}

.hero-content-left {
    max-width: 580px;
    padding-bottom: 10vh;
    padding-top: 2vh;
}

.hero-tag-text {
    display: block;
    color: #556B42;
    font-family: var(--font-jp-display);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.hero-tag-text .brush-underline {
    display: inline-block;
}

.hero-title-text {
    font-family: var(--font-jp-display);
    font-size: 3.4rem;
    color: #445634;
    line-height: 1.35;
    margin-bottom: 0;
    letter-spacing: 0.03em;
    font-weight: 700;
}

.hero-desc-text {
    font-family: var(--font-jp);
    font-size: 1.05rem;
    color: #444;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-leaves-decor {
    position: absolute;
    top: 0;
    right: 0;
    width: 350px;
    height: 350px;
    z-index: 3;
    pointer-events: none;
}

@media (max-width: 900px) {
    html, body {
        overflow-x: clip !important;
    }
    body { background-attachment: scroll; }
    .hero-section,
    .new-service-hero,
    .about-hero-band,
    .page-wave-strip {
        overflow-x: clip;
    }
    .new-service-hero {
        flex-direction: column;
        padding-top: 0;
        padding-left: 0 !important;
        padding-right: 0 !important;
        height: auto;
        min-height: unset;
        overflow: visible;
        justify-content: flex-start;
    }
    .new-service-hero .container {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 2rem;
        padding-bottom: 2rem;
        position: static;
    }
    .hero-photo-container {
        position: relative;
        top: 0;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-left: 0;
        height: auto;
        flex: none;
        margin-top: 70px;
    }
    .hero-photo-container img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: unset;
    }
    .hero-content-left {
        padding-bottom: 2rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .hero-tag-text {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    .hero-title-text {
        font-size: 2.2rem;
    }
    .hero-wavy-line {
        margin: 1rem 0;
    }
    .hero-desc-text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 0.8rem;
    }
    .hero-leaves-decor {
        width: 150px;
        height: 150px;
    }
}

/* About Landing Card */
.about-landing-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 2px solid #f1eedd;
    display: flex;
    gap: 3rem;
    align-items: center;
    text-align: left;
}

.about-card-img {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.about-card-img img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.about-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.about-card-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin: 0 0 1.5rem;
    text-align: left;
}

.about-btn-wrap {
    text-align: right;
    margin-top: auto;
}

.about-btn-wrap a {
    font-size: 0.95rem;
    padding: 0.6rem 1.8rem;
    display: inline-block;
}

@media (max-width: 768px) {
    .about-landing-card {
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 2rem;
        text-align: center;
    }
    .about-landing-card h2 {
        text-align: center !important;
    }
    .about-btn-wrap {
        text-align: center;
    }
}