html,
body {
    margin: 0;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 400;
}

* {
    box-sizing: border-box;
}

body {
    background: #FFF5F7;
    color: #2A1E23;
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
}

header,
.site-header {
    background: #F06F86;
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(184,31,53,0.18);
    position: sticky;
    top: 0;
    z-index: 9999;
}

.site-main {
    padding-top: 0;
}

.desktop-header,
.mobile-header {
    max-width: 1240px;
    margin: 0 auto;
    min-height: 74px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand-link,
.mobile-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo {
    width: 138px;
    height: auto;
    max-height: 58px;
    object-fit: contain;
}

.nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 0;
}

.nav a {
    color: #FFFFFF;
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    font-size: 15px;
    padding: 22px 7px 18px;
    line-height: 1;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color .25s ease, border-color .25s ease, transform .25s ease;
}

.nav a:hover,
.nav a.active {
    color: #7A1022;
    border-bottom-color: #7A1022;
    transform: translateY(-1px);
}

.login-btn {
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    background: #FFFFFF;
    color: #B81F35;
    border: 1px solid rgba(233,66,85,0.35);
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(184,31,53,0.10);
    padding: 11px 18px;
    line-height: 1;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease, box-shadow .25s ease;
}

.login-btn:hover,
.main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(184,31,53,0.18);
}

.mobile-header {
    display: none;
    justify-content: space-between;
}

.mobile-logo {
    width: 122px;
    height: auto;
    max-height: 54px;
    object-fit: contain;
}

.menu-button {
    border: 0;
    background: transparent;
    width: 42px;
    height: 42px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0;
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 26px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 999px;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 84vw;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(160deg, #FFFFFF 0%, #FFF5F7 55%, #FFE8EE 100%);
    z-index: 10001;
    transform: translateX(-105%);
    transition: transform .32s ease;
    padding: 18px;
    overflow-y: auto;
    box-shadow: 16px 0 38px rgba(122,16,34,0.22);
}

.drawer-open .mobile-drawer {
    transform: translateX(0);
}

.drawer-open {
    overflow: hidden;
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(42,30,35,0.45);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .32s ease;
}

.drawer-open .drawer-overlay {
    opacity: 1;
    pointer-events: auto;
}

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.drawer-logo {
    width: 132px;
    height: auto;
    object-fit: contain;
}

.drawer-close {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(233,66,85,0.25);
    border-radius: 50%;
    background: #FFFFFF;
    color: #B81F35;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.drawer-login {
    width: 100%;
    margin-bottom: 16px;
}

.drawer-nav {
    display: grid;
    gap: 8px;
}

.drawer-nav a {
    color: #7A1022;
    background: #FFFFFF;
    border: 1px solid rgba(233,66,85,0.16);
    border-radius: 14px;
    padding: 11px 13px;
    font-weight: 700;
}

h1,
.page-title,
.hero-title {
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    color: #9A1730;
    line-height: 1.15;
}

h2,
.section-title {
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    color: #9A1730;
    line-height: 1.22;
}

h3,
.card-title,
.zone-card h3,
.info-card h3 {
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
}

p,
li,
.faq-answer,
.section-desc,
.card p,
.zone-card p,
.info-card p {
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 400;
}

.nav a,
.text-link,
.meta-text,
.small-note {
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
}

.container,
.section-wrap,
.page-hero,
.content-wrap,
.footer-inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.banner-slider {
    max-width: 1200px;
    margin: 28px auto 36px;
    border-radius: 22px;
    background: linear-gradient(135deg, #FFF5F7 0%, #FFFFFF 48%, #FFE8EE 100%);
    border: 1px solid rgba(233,66,85,0.22);
    box-shadow: 0 18px 42px rgba(184,31,53,0.14);
    overflow: hidden;
    position: relative;
}

.banner-track {
    position: relative;
}

.banner-slide {
    display: none;
    background: #FFFFFF;
}

.banner-slide.active {
    display: block;
}

.banner-slide img,
.banner-slider img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.72);
    background: rgba(122,16,34,0.58);
    color: #FFFFFF;
    font-size: 26px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.banner-arrow.prev {
    left: 16px;
}

.banner-arrow.next {
    right: 16px;
}

.banner-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 4;
}

.banner-dot {
    width: 11px;
    height: 11px;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    background: rgba(255,255,255,0.55);
    cursor: pointer;
}

.banner-dot.active {
    background: #E94255;
}

.intro-strip,
.notice-box,
.app-panel {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF9FA 48%, #FFE8EE 100%);
    border: 1px solid rgba(233,66,85,0.18);
    box-shadow: 0 16px 40px rgba(184,31,53,0.10);
    border-radius: 22px;
    padding: 24px;
}

.intro-strip {
    margin-bottom: 30px;
}

.intro-strip p {
    margin: 0;
    font-size: 18px;
    color: #2A1E23;
}

.quick-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 auto 34px;
}

.quick-pills a {
    background: #FFFFFF;
    color: #B81F35;
    border: 1px solid rgba(233,66,85,0.24);
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(184,31,53,0.08);
    white-space: nowrap;
}

.section-head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 26px;
}

.section-kicker,
.card-label {
    color: #E94255;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: 13px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    margin: 8px 0 12px;
}

.section-desc {
    color: #7A5D65;
    margin: 0;
}

.category-grid,
.service-grid,
.zone-grid,
.security-grid,
.faq-grid,
.info-grid,
.news-grid {
    display: grid;
    gap: 18px;
}

.category-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-bottom: 44px;
}

.card,
.zone-card,
.info-card,
.faq-card,
.news-card,
.sidebar-card,
.content-card {
    background: #FFFFFF;
    border: 1px solid rgba(233,66,85,0.18);
    box-shadow: 0 16px 40px rgba(184,31,53,0.10);
    color: #2A1E23;
    border-radius: 20px;
}

.category-card {
    padding: 14px;
}

.category-card img,
.zone-card img,
.news-card img,
.app-section img,
.hero-visual img,
.promo-banner img,
.category-banners img,
.content-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.category-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #FFF9FA;
    border-radius: 16px;
    padding: 8px;
}

.category-card h3 {
    color: #9A1730;
    margin: 14px 0 8px;
    font-size: 19px;
}

.category-card p,
.zone-card p,
.info-card p,
.news-card p,
.faq-card p,
.sidebar-card p,
.content-card p {
    color: #2A1E23;
}

.text-link {
    display: inline-flex;
    margin-top: 8px;
    color: #B81F35;
    border-bottom: 1px solid rgba(184,31,53,0.35);
}

.service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 44px;
}

.service-card,
.info-card {
    padding: 24px;
}

.service-number {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFE8EE;
    color: #B81F35;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card h3,
.info-card h3,
.zone-card h3,
.faq-card h3 {
    color: #9A1730;
    margin: 0 0 10px;
}

.service-card ul,
.info-card ul,
.content-card ul,
.notice-box ul {
    margin: 12px 0 0;
    padding-left: 20px;
}

.service-card li,
.info-card li,
.content-card li,
.notice-box li {
    margin: 6px 0;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
    margin-bottom: 28px;
}

.feature-media,
.feature-text {
    border-radius: 22px;
}

.feature-media {
    background: #FFFFFF;
    border: 1px solid rgba(233,66,85,0.18);
    box-shadow: 0 16px 40px rgba(184,31,53,0.10);
    padding: 16px;
}

.feature-media img {
    width: 100%;
    height: auto;
    max-height: 330px;
    object-fit: contain;
}

.feature-text {
    padding: 28px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF9FA 100%);
    border: 1px solid rgba(233,66,85,0.14);
}

.feature-text h2 {
    margin-top: 0;
}

.feature-points {
    display: grid;
    gap: 8px;
    margin: 14px 0 0;
}

.feature-points span {
    display: block;
    color: #7A1022;
    font-weight: 700;
    background: #FFE8EE;
    border-radius: 12px;
    padding: 8px 12px;
}

.zone-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 44px;
}

.zone-card {
    padding: 16px;
}

.zone-card img,
.news-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #FFF9FA;
    border-radius: 16px;
    padding: 8px;
}

.graphic-mark {
    min-height: 162px;
    border-radius: 16px;
    background: radial-gradient(circle at top left, #FF8CA3 0%, #FFE8EE 36%, #FFFFFF 72%);
    border: 1px solid rgba(233,66,85,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B81F35;
    font-size: 42px;
    font-weight: 700;
}

.app-section {
    margin: 46px auto;
}

.app-panel {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 28px;
    align-items: center;
}

.app-panel img {
    width: 100%;
    max-height: 360px;
    object-fit: contain;
}

.app-content h2 {
    margin: 0 0 12px;
}

.app-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0 8px;
}

.app-list span {
    background: #FFFFFF;
    border: 1px solid rgba(233,66,85,0.18);
    border-radius: 14px;
    padding: 10px 12px;
    color: #7A1022;
    font-weight: 700;
}

.security-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 44px;
}

.info-card .icon-number {
    color: #E94255;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 8px;
}

.faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 44px;
}

.faq-card {
    padding: 24px;
}

.notice-box {
    margin: 0 auto 48px;
}

.notice-box h2 {
    margin-top: 0;
}

.page-hero {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 28px;
    align-items: center;
    padding-top: 34px;
    padding-bottom: 18px;
}

.page-hero.no-image {
    display: block;
    max-width: 930px;
    text-align: center;
}

.page-title {
    font-size: clamp(34px, 5vw, 56px);
    margin: 8px 0 16px;
}

.hero-copy {
    color: #7A5D65;
    font-size: 18px;
    margin: 0 0 18px;
}

.hero-visual {
    background: #FFFFFF;
    border-radius: 24px;
    border: 1px solid rgba(233,66,85,0.18);
    box-shadow: 0 16px 40px rgba(184,31,53,0.10);
    padding: 18px;
}

.hero-visual img {
    width: 100%;
    max-height: 360px;
}

.category-banners {
    max-width: 1200px;
    margin: 24px auto 32px;
    padding-left: 20px;
    padding-right: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.category-banners img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
    background: #FFFFFF;
    border: 1px solid rgba(233,66,85,0.18);
    box-shadow: 0 14px 32px rgba(184,31,53,0.12);
}

.content-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    margin-bottom: 42px;
}

.content-card,
.sidebar-card {
    padding: 26px;
}

.content-card h2,
.sidebar-card h3 {
    margin-top: 0;
}

.info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 42px;
}

.news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 42px;
}

.news-card {
    padding: 18px;
}

.main-btn {
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    background: linear-gradient(135deg, #FF8CA3 0%, #E94255 45%, #B81F35 100%);
    color: #FFFFFF;
    border-radius: 999px;
    box-shadow: 0 12px 26px rgba(184,31,53,0.22);
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.site-footer {
    background: #7A1022;
    color: #FFF5F7;
    margin-top: 56px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 28px;
    padding-top: 46px;
    padding-bottom: 34px;
}

.footer-logo {
    width: 140px;
    height: auto;
    object-fit: contain;
    margin-bottom: 14px;
}

.footer-col h3 {
    color: #FFFFFF;
    margin: 0 0 12px;
}

.footer-col a {
    display: block;
    color: #FFF5F7;
    margin: 8px 0;
    opacity: .92;
}

.footer-note {
    color: #FFE8EE;
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid rgba(255,245,247,0.18);
    text-align: center;
    padding: 16px 20px;
}

@media (max-width: 1120px) {
    .nav a {
        font-size: 14px;
        padding-left: 5px;
        padding-right: 5px;
    }
    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .desktop-header {
        display: none;
    }
    .mobile-header {
        display: flex;
    }
    .category-grid,
    .zone-grid,
    .security-grid,
    .info-grid,
    .service-grid,
    .faq-grid,
    .news-grid,
    .content-wrap,
    .page-hero,
    .app-panel,
    .feature-row,
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .category-banners {
        grid-template-columns: 1fr;
    }
    .feature-row:nth-child(even) .feature-text {
        order: 2;
    }
    .feature-row:nth-child(even) .feature-media {
        order: 1;
    }
    .app-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .mobile-login {
        padding: 10px 13px;
        font-size: 13px;
    }
    .banner-slider {
        margin: 18px 12px 28px;
        border-radius: 18px;
    }
    .banner-arrow {
        width: 34px;
        height: 34px;
        font-size: 21px;
    }
    .category-grid,
    .zone-grid {
        grid-template-columns: 1fr;
    }
    .intro-strip,
    .feature-text,
    .content-card,
    .sidebar-card,
    .notice-box,
    .service-card,
    .info-card,
    .faq-card {
        padding: 20px;
    }
    .page-hero {
        padding-top: 22px;
    }
}
