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

body.drawer-open {
    overflow: hidden;
}

img {
    display: block;
}

a {
    text-decoration: none;
}

.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,
.mobile-header {
    max-width: 1240px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand,
.mobile-logo,
.drawer-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand img {
    width: 138px;
    height: auto;
}

.mobile-logo img,
.drawer-logo img {
    width: 122px;
    height: auto;
}

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

.nav a {
    color: #FFFFFF;
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    padding: 12px 0 10px;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s 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: 10px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(122,16,34,0.18);
}

.mobile-header {
    display: none;
    min-height: 68px;
    grid-template-columns: 44px 1fr auto;
}

.menu-toggle,
.drawer-close {
    border: 0;
    background: rgba(255,255,255,0.18);
    color: #FFFFFF;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 24px;
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    cursor: pointer;
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.24s ease, visibility 0.24s ease;
    z-index: 10000;
}

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

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

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

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

.drawer-close {
    background: #F06F86;
}

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

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

.drawer-nav a {
    color: #7A1022;
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    padding: 12px 14px;
    border-radius: 14px;
    background: #FFFFFF;
    border: 1px solid rgba(233,66,85,0.12);
}

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

.site-main {
    min-height: 62vh;
}

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

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

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

h3,
.card-title,
.zone-card h3,
.info-card h3 {
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    color: #B81F35;
    line-height: 1.3;
}

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

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

.section-desc {
    color: #7A5D65;
    margin: 0 0 28px;
    max-width: 840px;
}

.eyebrow,
.meta-text,
.small-note {
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    color: #E94255;
    letter-spacing: 0.02em;
}

.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;
    min-height: 260px;
}

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

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

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

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.78);
    background: rgba(122,16,34,0.64);
    color: #FFFFFF;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    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;
    z-index: 4;
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: rgba(255,255,255,0.72);
    cursor: pointer;
}

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

.intro-strip,
.responsible-strip {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto 34px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F7 55%, #FFE8EE 100%);
    border: 1px solid rgba(233,66,85,0.18);
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(184,31,53,0.10);
    padding: 24px;
}

.quick-pills {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto 42px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

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

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

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

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

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

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

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

.card,
.zone-card,
.info-card,
.faq-item,
.article-card,
.side-panel,
.feature-box {
    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;
}

.card,
.zone-card,
.info-card,
.faq-item,
.feature-box {
    padding: 20px;
}

.card-img-wrap,
.zone-img-wrap {
    background: #FFF9FA;
    border-radius: 16px;
    border: 1px solid rgba(233,66,85,0.10);
    margin-bottom: 14px;
    overflow: hidden;
}

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

.card img,
.zone-card img {
    width: 100%;
    max-height: 170px;
    background: #FFF9FA;
}

.text-only-mark {
    height: 170px;
    border-radius: 16px;
    background: radial-gradient(circle at 20% 20%, #FFB5C3 0%, transparent 32%), linear-gradient(135deg, #FFF5F7 0%, #FFE8EE 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B81F35;
    font-size: 38px;
    font-weight: 700;
    border: 1px solid rgba(233,66,85,0.12);
    margin-bottom: 14px;
}

.text-link {
    color: #B81F35;
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
}

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

.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: 13px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(184,31,53,0.28);
}

.section-block {
    padding: 38px 0;
}

.split-row {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
    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: 26px;
}

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

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

.split-content ul,
.article-card ul,
.info-card ul,
.app-copy ul,
.feature-box ul {
    padding-left: 20px;
    margin: 12px 0 0;
}

.split-content li,
.article-card li,
.info-card li,
.app-copy li,
.feature-box li {
    margin-bottom: 8px;
}

.number-badge {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFE8EE;
    color: #B81F35;
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    margin-bottom: 12px;
}

.app-section {
    width: min(1200px, calc(100% - 32px));
    margin: 36px auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 32px;
    align-items: center;
    background: linear-gradient(135deg, #FFE8EE 0%, #FFFFFF 58%, #FFF5F7 100%);
    border: 1px solid rgba(233,66,85,0.18);
    border-radius: 26px;
    box-shadow: 0 18px 42px rgba(184,31,53,0.12);
    padding: 28px;
}

.app-visual {
    background: #FFFFFF;
    border-radius: 22px;
    border: 1px solid rgba(233,66,85,0.14);
    overflow: hidden;
}

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

.security-list {
    counter-reset: security;
}

.security-list .info-card {
    position: relative;
}

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

.page-hero {
    width: min(1200px, calc(100% - 32px));
    margin: 34px auto 20px;
    padding: 34px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F7 55%, #FFE8EE 100%);
    border: 1px solid rgba(233,66,85,0.18);
    border-radius: 26px;
    box-shadow: 0 16px 40px rgba(184,31,53,0.10);
}

.page-hero p {
    max-width: 900px;
    color: #7A5D65;
    margin: 0;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
    gap: 24px;
    align-items: start;
    margin-bottom: 34px;
}

.article-card,
.side-panel {
    padding: 26px;
}

.side-panel {
    position: sticky;
    top: 96px;
}

.side-panel img {
    width: 100%;
    max-height: 260px;
    object-fit: contain;
    border-radius: 18px;
    background: #FFF9FA;
    border: 1px solid rgba(233,66,85,0.12);
    margin-bottom: 18px;
}

.notice-box {
    margin-top: 22px;
    background: #FFF5F7;
    border: 1px solid rgba(233,66,85,0.20);
    border-radius: 18px;
    padding: 18px;
}

.notice-box strong {
    color: #B81F35;
}

.faq-list {
    width: min(980px, calc(100% - 32px));
    margin: 0 auto 46px;
    display: grid;
    gap: 16px;
}

.faq-list .faq-item h2 {
    font-size: 22px;
    margin: 0 0 10px;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.contact-form label {
    font-weight: 700;
    color: #B81F35;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    border: 1px solid rgba(233,66,85,0.24);
    border-radius: 14px;
    padding: 12px 14px;
    font-family: "Charis SIL", Georgia, serif;
    font-size: 16px;
    background: #FFF9FA;
    color: #2A1E23;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.site-footer {
    background: #7A1022;
    color: #FFF5F7;
    padding: 44px 0 28px;
    margin-top: 40px;
}

.footer-inner {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1.3fr 1fr;
    gap: 32px;
}

.footer-brand img {
    width: 138px;
    height: auto;
    margin-bottom: 14px;
}

.footer-brand p,
.footer-note p {
    color: #FFF5F7;
    opacity: 0.92;
    margin: 0;
}

.footer-note h3 {
    color: #FFFFFF;
    margin-top: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
}

.footer-links a {
    color: #FFF5F7;
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
}

.footer-links a:hover {
    color: #FFB5C3;
}

@media (max-width: 1120px) {
    .desktop-header {
        gap: 12px;
        padding: 10px 14px;
    }
    .nav {
        gap: 10px;
    }
    .nav a {
        font-size: 14px;
    }
    .brand img {
        width: 118px;
    }
    .login-btn {
        padding: 9px 14px;
        font-size: 14px;
    }
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 920px) {
    .desktop-header {
        display: none;
    }
    .mobile-header {
        display: grid;
        align-items: center;
    }
    .mobile-logo {
        justify-content: center;
    }
    .mobile-login {
        padding: 8px 12px;
        font-size: 13px;
    }
    .banner-track {
        min-height: 160px;
    }
    .service-grid,
    .zone-grid,
    .info-grid,
    .faq-grid,
    .category-banners {
        grid-template-columns: repeat(2, 1fr);
    }
    .split-row,
    .app-section,
    .article-layout,
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .split-row:nth-child(even) .split-media {
        order: 0;
    }
    .side-panel {
        position: static;
    }
}

@media (max-width: 640px) {
    .container,
    .section,
    .content-section,
    .intro-strip,
    .responsible-strip,
    .split-row,
    .app-section,
    .page-hero,
    .quick-pills {
        width: min(100% - 24px, 1200px);
    }
    .page-hero,
    .article-card,
    .side-panel,
    .app-section,
    .split-row,
    .intro-strip,
    .responsible-strip {
        padding: 20px;
        border-radius: 20px;
    }
    .category-grid,
    .service-grid,
    .zone-grid,
    .info-grid,
    .faq-grid,
    .category-banners {
        grid-template-columns: 1fr;
    }
    .banner-slider {
        margin-left: 12px;
        margin-right: 12px;
        border-radius: 18px;
    }
    .banner-arrow {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }
    .footer-links {
        grid-template-columns: 1fr;
    }
    .quick-pills a {
        padding: 9px 12px;
    }
}
