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.68;
}

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

img {
    display: block;
}

.container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

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

.desktop-header {
    height: 74px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-logo img,
.mobile-logo img,
.drawer-logo img,
.footer-logo img {
    width: 118px;
    height: auto;
    max-height: 54px;
    object-fit: contain;
}

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

.desktop-nav a {
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    padding: 25px 0 20px;
    border-bottom: 2px solid transparent;
    transition: color .2s ease, border-color .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: #7A1022;
    border-bottom-color: #7A1022;
}

.mobile-topbar {
    display: none;
    height: 66px;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
}

.menu-toggle,
.drawer-close,
.banner-arrow {
    border: 0;
    cursor: pointer;
    font-family: "Charis SIL", Georgia, serif;
}

.menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,0.22);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 10px;
}

.login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 40px;
    padding: 9px 17px;
    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);
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease;
}

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

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(42,30,35,0.48);
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease, visibility .28s ease;
    z-index: 9997;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(84vw, 320px);
    height: 100vh;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF5F7 100%);
    transform: translateX(-104%);
    transition: transform .28s ease;
    z-index: 9998;
    box-shadow: 18px 0 36px rgba(184,31,53,0.18);
    padding: 18px;
    overflow-y: auto;
}

.drawer-open {
    overflow: hidden;
}

.drawer-open .drawer-overlay {
    opacity: 1;
    visibility: visible;
}

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

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

.drawer-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FFE8EE;
    color: #B81F35;
    font-size: 28px;
    line-height: 1;
}

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

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

.drawer-nav a {
    padding: 12px 14px;
    border-radius: 14px;
    background: #FFFFFF;
    border: 1px solid rgba(233,66,85,0.14);
    color: #9A1730;
    font-weight: 700;
}

.drawer-nav a.active,
.drawer-nav a:hover {
    background: #FFE8EE;
    color: #7A1022;
}

.site-main {
    padding-bottom: 54px;
}

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;
    line-height: 1.28;
}

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;
}

.text-link {
    color: #B81F35;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.text-link:hover {
    color: #E94255;
}

.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 24px;
    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);
    border: 0;
    transition: transform .2s ease, box-shadow .2s ease;
}

.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;
}

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

.banner-slider img {
    width: 100%;
    height: auto;
    max-height: 470px;
    object-fit: contain;
    background: #FFF9FA;
}

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: #B81F35;
    font-size: 28px;
    box-shadow: 0 10px 22px rgba(184,31,53,0.18);
    z-index: 3;
}

.banner-prev { left: 16px; }
.banner-next { right: 16px; }

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

.banner-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.72);
    box-shadow: 0 0 0 1px rgba(184,31,53,0.14);
    cursor: pointer;
}

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

.intro-strip,
.responsible-box,
.note-box {
    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 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 24px;
    align-items: center;
    margin: 0 auto 36px;
}

.eyebrow {
    margin: 0 0 8px;
    color: #E94255;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.intro-strip h1,
.page-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(32px, 5vw, 58px);
}

.lead {
    color: #4A363D;
    font-size: 18px;
    margin: 0;
}

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

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

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

.quick-pills a:hover {
    background: #FFE8EE;
}

.section-block {
    margin: 52px auto;
}

.section-head {
    max-width: 760px;
    margin: 0 0 24px;
}

.section-head.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

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

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

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.card,
.zone-card,
.info-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: 22px;
    overflow: hidden;
}

.category-card {
    padding: 16px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.category-card img {
    width: 100%;
    height: 132px;
    object-fit: contain;
    background: #FFF9FA;
    border-radius: 16px;
    margin-bottom: 12px;
}

.category-card h3,
.zone-card h3,
.info-card h3 {
    color: #9A1730;
    margin: 0 0 8px;
    font-size: 20px;
}

.category-card p {
    color: #7A5D65;
    margin: 0 0 12px;
    flex: 1;
}

.service-grid,
.help-grid,
.faq-grid,
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.info-card {
    padding: 24px;
}

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

.info-card ul,
.content-copy ul,
.app-copy ul {
    padding-left: 20px;
    margin: 14px 0 0;
}

.info-card li,
.content-copy li,
.app-copy li {
    margin-bottom: 6px;
}

.split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    margin: 28px 0;
    background: #FFFFFF;
    border: 1px solid rgba(233,66,85,0.18);
    border-radius: 26px;
    padding: 24px;
    box-shadow: 0 16px 40px rgba(184,31,53,0.10);
}

.split-row.reverse .content-copy {
    order: 1;
}

.split-row.reverse .image-wrap {
    order: 2;
}

.image-wrap {
    background: #FFF9FA;
    border-radius: 20px;
    border: 1px solid rgba(233,66,85,0.12);
    overflow: hidden;
    padding: 12px;
}

.image-wrap img {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
}

.content-copy h3 {
    margin: 0 0 10px;
    color: #9A1730;
    font-size: 28px;
}

.content-copy p {
    color: #4A363D;
    margin: 0 0 12px;
}

.zone-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.zone-card {
    padding: 0 0 20px;
}

.zone-card img,
.zone-visual {
    width: 100%;
    height: 170px;
    object-fit: contain;
    background: linear-gradient(135deg, #FFF9FA 0%, #FFE8EE 100%);
    border-bottom: 1px solid rgba(233,66,85,0.14);
}

.zone-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B81F35;
    font-size: 48px;
    font-weight: 700;
}

.zone-card .zone-body {
    padding: 18px;
}

.tag {
    display: inline-flex;
    color: #B81F35;
    background: #FFE8EE;
    border-radius: 999px;
    padding: 4px 10px;
    font-weight: 700;
    margin-bottom: 10px;
}

.app-section {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    background: linear-gradient(135deg, #FFE8EE 0%, #FFFFFF 56%, #FFF9FA 100%);
    border: 1px solid rgba(233,66,85,0.18);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 18px 42px rgba(184,31,53,0.12);
}

.app-section img {
    width: 100%;
    max-height: 420px;
}

.app-copy h2 {
    margin-top: 0;
}

.help-grid {
    grid-template-columns: repeat(3, 1fr);
}

.faq-grid {
    grid-template-columns: repeat(2, 1fr);
}

.faq-item {
    padding: 22px;
    background: #FFFFFF;
    border: 1px solid rgba(233,66,85,0.18);
    border-radius: 20px;
    box-shadow: 0 14px 32px rgba(184,31,53,0.09);
}

.faq-item h3 {
    color: #9A1730;
    margin: 0 0 8px;
}

.faq-answer,
.faq-item p {
    color: #4A363D;
    margin: 0;
}

.page-hero {
    background: linear-gradient(135deg, #FFF5F7 0%, #FFFFFF 52%, #FFE8EE 100%);
    border-bottom: 1px solid rgba(233,66,85,0.14);
    padding: 46px 0 30px;
}

.page-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 32px;
    align-items: center;
}

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

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

.category-banners {
    max-width: 1200px;
    margin: 24px auto 32px;
    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);
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}

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

.article-card h2 {
    margin-top: 0;
}

.article-card p {
    color: #4A363D;
}

.sidebar-card {
    position: sticky;
    top: 98px;
    background: #FFFFFF;
    border: 1px solid rgba(233,66,85,0.18);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 16px 40px rgba(184,31,53,0.10);
}

.sidebar-card h3 {
    color: #9A1730;
    margin-top: 0;
}

.sidebar-card a {
    display: block;
    padding: 8px 0;
    color: #B81F35;
    font-weight: 700;
    border-bottom: 1px solid rgba(233,66,85,0.10);
}

.callout-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 20px 0;
}

.callout-list .info-card {
    padding: 18px;
    box-shadow: none;
}

.promo-banner {
    margin: 20px 0;
    background: #FFF9FA;
    border: 1px solid rgba(233,66,85,0.14);
    border-radius: 22px;
    padding: 12px;
}

.promo-banner img {
    width: 100%;
    max-height: 280px;
}

.site-footer {
    background: #7A1022;
    color: #FFF5F7;
    padding: 48px 0 18px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 28px;
}

.footer-brand p,
.footer-note {
    color: rgba(255,245,247,0.82);
}

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

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

.footer-grid a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 28px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,245,247,0.18);
    display: flex;
    justify-content: space-between;
    gap: 14px;
    color: rgba(255,245,247,0.78);
    font-size: 14px;
}

@media (max-width: 1080px) {
    .desktop-nav { gap: 9px; }
    .desktop-nav a { font-size: 14px; }
    .category-grid { grid-template-columns: repeat(3, 1fr); }
    .zone-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
    .desktop-header { display: none; }
    .mobile-topbar { display: flex; }
    .container { width: min(100% - 24px, 1200px); }
    .banner-slider { margin: 18px 12px 28px; border-radius: 18px; }
    .banner-arrow { width: 38px; height: 38px; font-size: 24px; }
    .banner-prev { left: 10px; }
    .banner-next { right: 10px; }
    .intro-strip,
    .page-hero-inner,
    .app-section,
    .article-layout,
    .split-row,
    .split-row.reverse {
        grid-template-columns: 1fr;
    }
    .intro-strip img { max-width: 280px; margin: 0 auto; }
    .split-row.reverse .content-copy,
    .split-row.reverse .image-wrap { order: initial; }
    .service-grid,
    .help-grid,
    .faq-grid,
    .feature-grid,
    .callout-list { grid-template-columns: 1fr; }
    .category-banners { grid-template-columns: 1fr; margin-left: 12px; margin-right: 12px; }
    .article-card { padding: 22px; }
    .sidebar-card { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; }
}

@media (max-width: 560px) {
    .mobile-logo img { width: 98px; }
    .mobile-topbar .login-btn { padding: 8px 12px; font-size: 13px; }
    .category-grid,
    .zone-grid { grid-template-columns: 1fr; }
    .quick-pills a { flex: 1 1 calc(50% - 8px); text-align: center; justify-content: center; }
    .intro-strip,
    .app-section,
    .split-row { padding: 18px; border-radius: 20px; }
    .section-block { margin: 38px auto; }
    .footer-grid { grid-template-columns: 1fr; }
    .banner-slider img { max-height: 320px; }
}
