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

body {
background: #F5FCFF;
color: #1E2A36;
line-height: 1.72;
}

* {
box-sizing: border-box;
}

a {
text-decoration: none;
transition: all .22s ease;
}

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

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

.site-header {
background: #35AED3;
color: #FFFFFF;
box-shadow: 0 8px 24px rgba(8,121,168,0.18);
position: sticky;
top: 0;
z-index: 9999;
}

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

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

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

.nav a {
font-family: "Charis SIL", Georgia, serif;
font-weight: 700;
color: #FFFFFF;
font-size: 15px;
white-space: nowrap;
position: relative;
padding: 23px 0 19px;
}

.nav a:hover,
.nav a.active {
color: #054C72;
}

.nav a.active:after {
content: "";
position: absolute;
left: 0;
right: 0;
bottom: 13px;
height: 2px;
border-radius: 999px;
background: #054C72;
}

.login-btn {
font-family: "Charis SIL", Georgia, serif;
font-weight: 700;
background: #FFFFFF;
color: #0879A8;
border: 1px solid rgba(46,169,214,0.45);
border-radius: 999px;
box-shadow: 0 10px 22px rgba(8,121,168,0.10);
display: inline-flex;
align-items: center;
justify-content: center;
padding: 10px 18px;
letter-spacing: .02em;
white-space: nowrap;
}

.login-btn:hover {
transform: translateY(-2px);
box-shadow: 0 14px 30px rgba(8,121,168,0.18);
}

.main-btn {
font-family: "Charis SIL", Georgia, serif;
font-weight: 700;
background: linear-gradient(135deg, #43C7EC 0%, #2EA9D6 45%, #0879A8 100%);
color: #FFFFFF;
border-radius: 999px;
box-shadow: 0 12px 26px rgba(8,121,168,0.22);
display: inline-flex;
align-items: center;
justify-content: center;
padding: 12px 22px;
}

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

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

.mobile-brand img {
width: 116px;
}

.mobile-login {
padding: 9px 13px;
font-size: 13px;
}

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

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

.mobile-drawer {
position: fixed;
top: 0;
left: 0;
height: 100vh;
width: 84vw;
max-width: 320px;
background: linear-gradient(180deg, #FFFFFF 0%, #EAF8FF 100%);
z-index: 10001;
transform: translateX(-104%);
transition: transform .28s ease;
box-shadow: 16px 0 36px rgba(5,76,114,.22);
padding: 18px;
overflow-y: auto;
}

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

.drawer-open {
overflow: hidden;
}

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

.drawer-logo img {
width: 126px;
}

.drawer-close {
background: #35AED3;
}

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

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

.drawer-nav a {
font-family: "Charis SIL", Georgia, serif;
font-weight: 700;
color: #054C72;
padding: 12px 14px;
border-radius: 12px;
background: rgba(46,169,214,.08);
border: 1px solid rgba(46,169,214,.12);
}

.drawer-nav a.active,
.drawer-nav a:hover {
background: #DDF5FF;
color: #0879A8;
}

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

.hero-banner-wrap {
padding-top: 26px;
}

.banner-slider {
max-width: 1200px;
margin: 28px auto 36px;
border-radius: 22px;
background: linear-gradient(135deg, #EAF8FF 0%, #FFFFFF 48%, #DDF5FF 100%);
border: 1px solid rgba(46,169,214,0.22);
box-shadow: 0 18px 42px rgba(8,121,168,0.14);
overflow: hidden;
position: relative;
}

.banner-track {
display: flex;
transition: transform .45s ease;
}

.banner-slide {
min-width: 100%;
padding: 18px;
display: flex;
align-items: center;
justify-content: center;
}

.banner-slide img {
width: 100%;
height: auto;
max-height: 430px;
object-fit: contain;
border-radius: 16px;
}

.slider-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 42px;
height: 42px;
border-radius: 999px;
border: 1px solid rgba(255,255,255,.75);
background: rgba(255,255,255,.88);
color: #0879A8;
font-size: 26px;
font-weight: 700;
cursor: pointer;
box-shadow: 0 10px 24px rgba(8,121,168,.16);
}

.slider-arrow.prev {
left: 18px;
}

.slider-arrow.next {
right: 18px;
}

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

.slider-dot {
width: 10px;
height: 10px;
border-radius: 999px;
border: 0;
background: rgba(8,121,168,.28);
cursor: pointer;
}

.slider-dot.active {
width: 26px;
background: #0879A8;
}

.section {
padding: 52px 0;
}

.section.soft {
background: #EAF8FF;
}

.section-title,
h2 {
font-family: "Charis SIL", Georgia, serif;
font-weight: 700;
color: #054C72;
font-size: clamp(28px, 3vw, 42px);
line-height: 1.18;
margin: 0 0 16px;
}

h1,
.page-title,
.hero-title {
font-family: "Charis SIL", Georgia, serif;
font-weight: 700;
color: #054C72;
font-size: clamp(34px, 4vw, 56px);
line-height: 1.08;
margin: 0 0 18px;
}

h3,
.card-title,
.zone-card h3,
.info-card h3 {
font-family: "Charis SIL", Georgia, serif;
font-weight: 700;
color: #054C72;
line-height: 1.25;
margin: 0 0 10px;
}

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

.section-desc {
max-width: 780px;
color: #5D6B78;
margin: 0 0 26px;
}

.intro-strip {
background: linear-gradient(135deg, #FFFFFF 0%, #EAF8FF 100%);
border: 1px solid rgba(46,169,214,0.18);
box-shadow: 0 16px 40px rgba(8,121,168,0.10);
border-radius: 22px;
padding: 24px 28px;
color: #1E2A36;
}

.quick-capsules {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-top: 22px;
}

.quick-capsules a {
font-family: "Charis SIL", Georgia, serif;
font-weight: 700;
color: #0879A8;
background: #FFFFFF;
border: 1px solid rgba(46,169,214,.22);
border-radius: 999px;
padding: 10px 16px;
box-shadow: 0 8px 20px rgba(8,121,168,.08);
white-space: nowrap;
}

.quick-capsules a:hover {
background: #DDF5FF;
transform: translateY(-2px);
}

.grid {
display: grid;
gap: 22px;
}

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

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

.grid-4 {
grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.zone-card,
.info-card {
background: #FFFFFF;
border: 1px solid rgba(46,169,214,0.18);
box-shadow: 0 16px 40px rgba(8,121,168,0.10);
color: #1E2A36;
border-radius: 20px;
padding: 22px;
}

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

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

.category-card img {
height: 150px;
width: 100%;
object-fit: contain;
margin-bottom: 18px;
border-radius: 14px;
background: #F5FCFF;
}

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

.text-link:hover {
color: #054C72;
gap: 10px;
}

.number {
font-family: "Charis SIL", Georgia, serif;
font-weight: 700;
color: #2EA9D6;
font-size: 34px;
line-height: 1;
margin-bottom: 12px;
}

.info-card ul,
.story-text ul,
.app-text ul,
.page-card ul {
padding-left: 20px;
margin: 12px 0 0;
}

.info-card li,
.story-text li,
.app-text li,
.page-card li {
font-weight: 700;
margin-bottom: 8px;
}

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

.story-image {
background: #FFFFFF;
border-radius: 22px;
border: 1px solid rgba(46,169,214,.18);
box-shadow: 0 16px 40px rgba(8,121,168,.10);
padding: 18px;
}

.story-image img {
width: 100%;
max-height: 320px;
object-fit: contain;
border-radius: 16px;
}

.story-text {
padding: 8px;
}

.zone-card {
display: flex;
flex-direction: column;
gap: 12px;
min-height: 100%;
}

.zone-card img {
height: 148px;
width: 100%;
object-fit: contain;
border-radius: 14px;
background: #F5FCFF;
}

.zone-tag {
font-family: "Charis SIL", Georgia, serif;
font-weight: 700;
color: #0879A8;
background: #EAF8FF;
border-radius: 999px;
padding: 6px 12px;
width: fit-content;
}

.graphic-mark {
height: 148px;
border-radius: 14px;
background: radial-gradient(circle at 25% 20%, #43C7EC 0, #43C7EC 18%, transparent 19%),
linear-gradient(135deg, #EAF8FF 0%, #DDF5FF 100%);
border: 1px solid rgba(46,169,214,.18);
}

.app-section {
background: linear-gradient(135deg, #EAF8FF 0%, #FFFFFF 58%, #DDF5FF 100%);
border-radius: 28px;
border: 1px solid rgba(46,169,214,.18);
box-shadow: 0 16px 40px rgba(8,121,168,.10);
padding: 28px;
display: grid;
grid-template-columns: .9fr 1.1fr;
gap: 30px;
align-items: center;
}

.app-section img {
max-height: 360px;
margin: 0 auto;
}

.help-grid {
counter-reset: help;
}

.help-card {
position: relative;
padding-left: 64px;
}

.help-card:before {
counter-increment: help;
content: counter(help, decimal-leading-zero);
position: absolute;
left: 22px;
top: 24px;
font-family: "Charis SIL", Georgia, serif;
font-weight: 700;
color: #2EA9D6;
}

.faq-list {
display: grid;
gap: 16px;
}

.faq-item {
background: #FFFFFF;
border: 1px solid rgba(46,169,214,.18);
border-radius: 18px;
padding: 20px;
box-shadow: 0 12px 30px rgba(8,121,168,.08);
}

.faq-item h3 {
font-size: 20px;
}

.responsible-box {
background: linear-gradient(135deg, #054C72 0%, #0879A8 100%);
border-radius: 24px;
padding: 30px;
color: #EAF8FF;
box-shadow: 0 18px 42px rgba(5,76,114,.18);
}

.responsible-box h2,
.responsible-box h3,
.responsible-box p,
.responsible-box li {
color: #EAF8FF;
}

.page-hero {
padding: 56px 0 26px;
}

.page-hero-inner {
display: grid;
grid-template-columns: 1.08fr .92fr;
gap: 34px;
align-items: center;
background: linear-gradient(135deg, #FFFFFF 0%, #EAF8FF 100%);
border: 1px solid rgba(46,169,214,.18);
box-shadow: 0 16px 40px rgba(8,121,168,.10);
border-radius: 26px;
padding: 34px;
}

.hero-visual {
background: #FFFFFF;
border: 1px solid rgba(46,169,214,.16);
border-radius: 22px;
padding: 18px;
}

.hero-visual img {
width: 100%;
max-height: 330px;
object-fit: contain;
border-radius: 14px;
}

.meta-text,
.small-note {
font-family: "Charis SIL", Georgia, serif;
font-weight: 700;
color: #0879A8;
}

.page-card {
background: #FFFFFF;
border: 1px solid rgba(46,169,214,.18);
border-radius: 22px;
padding: 26px;
box-shadow: 0 16px 40px rgba(8,121,168,.10);
margin-bottom: 24px;
}

.notice-card {
background: #EAF8FF;
border: 1px solid rgba(46,169,214,.18);
border-radius: 18px;
padding: 20px;
color: #1E2A36;
}

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

.contact-form label {
font-family: "Charis SIL", Georgia, serif;
font-weight: 700;
color: #054C72;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
font-family: "Charis SIL", Georgia, serif;
font-weight: 400;
width: 100%;
border: 1px solid rgba(46,169,214,.28);
border-radius: 12px;
padding: 12px 14px;
background: #FFFFFF;
color: #1E2A36;
}

.contact-form button {
border: 0;
cursor: pointer;
}

.footer {
background: #054C72;
color: #EAF8FF;
padding: 46px 0 0;
}

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

.footer h3 {
color: #EAF8FF;
margin-bottom: 12px;
}

.footer p {
color: #EAF8FF;
margin-top: 12px;
}

.footer a {
display: block;
color: #EAF8FF;
margin: 8px 0;
}

.footer a:hover {
color: #43C7EC;
}

.footer-brand img {
width: 132px;
}

.footer-login {
font-family: "Charis SIL", Georgia, serif;
font-weight: 700;
background: #FFFFFF;
color: #0879A8 !important;
border-radius: 999px;
padding: 10px 18px;
width: fit-content;
margin-top: 16px !important;
}

.footer-bottom {
border-top: 1px solid rgba(234,248,255,.16);
text-align: center;
padding: 18px;
margin-top: 34px;
color: #EAF8FF;
}

.download-entry {
display: inline-flex;
margin-top: 14px;
}

@media (max-width: 1100px) {
.nav {
gap: 12px;
}
.nav a {
font-size: 14px;
}
.brand img {
width: 118px;
}
}

@media (max-width: 920px) {
.desktop-header {
display: none;
}
.mobile-header {
display: flex;
}
.hero-banner-wrap {
padding-top: 8px;
}
.grid-4 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.story-row,
.story-row.reverse,
.app-section,
.page-hero-inner {
grid-template-columns: 1fr;
}
.story-row.reverse .story-text {
order: 1;
}
.story-row.reverse .story-image {
order: 2;
}
.footer-grid {
grid-template-columns: 1fr 1fr;
}
}

@media (max-width: 620px) {
.container {
width: min(100% - 24px, 1200px);
}
.section {
padding: 38px 0;
}
.banner-slide {
padding: 10px;
}
.slider-arrow {
width: 34px;
height: 34px;
font-size: 22px;
}
.slider-arrow.prev {
left: 8px;
}
.slider-arrow.next {
right: 8px;
}
.grid-2,
.grid-3,
.grid-4 {
grid-template-columns: 1fr;
}
.page-hero-inner,
.app-section,
.card,
.zone-card,
.info-card,
.page-card {
padding: 20px;
}
.footer-grid {
grid-template-columns: 1fr;
}
.category-card img,
.zone-card img,
.graphic-mark {
height: 128px;
}
.mobile-login {
font-size: 12px;
padding: 8px 10px;
}
}
