*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        :root { --sh-green:#4a7886; --sh-green-dark:#2A4651; --off-white:#EEF2F3; --cream:#FAF8F4; --text-dark:#1A2A30; --text-mid:#4a6470; }
        body { font-family: "boreal", sans-serif; font-weight: 300; color: var(--text-dark); line-height: 1.7; background: var(--cream); }
        a { text-decoration: none; color: var(--sh-green); }
        a:hover { color: var(--sh-green-dark); }

        /* ── Header ── */
        .ann-bar { background: var(--sh-green-dark); color: var(--cream); font-size: 13px; font-weight: 300; letter-spacing: 0.01em; text-align: center; padding: 11px 20px; }
        .ann-bar strong { font-weight: 700; letter-spacing: 0.02em; }
        .site-header { position: sticky; top: 0; z-index: 100; background: var(--cream); border-bottom: 1px solid rgba(74,120,134,0.14); padding: 0 48px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
        .site-header.scrolled { box-shadow: 0 2px 16px rgba(30,54,64,0.10); border-bottom-color: rgba(74,120,134,0.22); }
        .header-logo img { height: 44px; width: auto; }
        .header-nav { display: flex; align-items: center; gap: 4px; }
        .header-nav a { font-size: 14px; font-weight: 400; color: var(--sh-green-dark); padding: 26px 14px; transition: color .2s; white-space: nowrap; }
        .header-nav a:hover { color: var(--sh-green); }
        .nav-item { position: relative; }
        .nav-link { display: flex; align-items: center; gap: 4px; }
        .caret { display: inline-block; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 4px solid currentColor; margin-left: 2px; vertical-align: middle; transition: transform .2s; }
        .nav-item:hover .caret { transform: rotate(180deg); }
        .nav-dropdown { display: none; position: absolute; top: 100%; left: 0; background: #fff; box-shadow: 0 8px 28px rgba(0,0,0,0.12); min-width: 220px; padding: 8px 0; z-index: 100; border-top: 2px solid var(--sh-green); }
        .nav-item:hover .nav-dropdown { display: block; }
        .nav-dropdown a { display: block; padding: 10px 20px; font-size: 13px; font-weight: 400; color: var(--sh-green-dark); white-space: nowrap; transition: background .15s; }
        .nav-dropdown a:hover { background: var(--off-white); color: var(--sh-green); }
        .dd-divider { height: 1px; background: rgba(0,0,0,0.08); margin: 4px 0; }
        /* ── Breadcrumb ── */
        .breadcrumb-bar { background: var(--cream); border-bottom: 1px solid rgba(74,120,134,0.10); padding: 9px 48px; }
        .breadcrumb { font-size: 12px; color: var(--text-mid); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
        .breadcrumb a { color: var(--text-mid); transition: color .2s; }
        .breadcrumb a:hover { color: var(--sh-green); }
        .breadcrumb-sep { color: rgba(0,0,0,0.3); }
        .header-cta { display: inline-block; background: var(--sh-green); color: #fff; font-family: "boreal", sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase; padding: 11px 22px; transition: background .2s; }
        .header-cta:hover { background: var(--sh-green-dark); color: #fff; }
        .header-right { display: flex; align-items: center; gap: 12px; }
        .lang-toggle { display: flex; align-items: center; gap: 2px; font-size: 12px; letter-spacing: 1px; border: 1px solid rgba(0,0,0,0.15); padding: 5px 10px; }
        .lang { cursor: pointer; padding: 2px 5px; color: var(--text-mid); transition: color .2s; }
        .lang.active { color: var(--sh-green); font-weight: 700; }
        .lang-sep { color: rgba(0,0,0,0.2); }
        .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
        .hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); transition: all .3s; }
        .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; }
        .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
        .mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: #fff; z-index: 850; overflow-y: auto; }
        .mobile-menu.open { display: block; }
        .mobile-menu a { display: block; padding: 14px 24px; font-size: 15px; font-weight: 300; border-bottom: 1px solid rgba(0,0,0,0.06); color: var(--text-dark); }
        .mobile-menu a:hover { color: var(--sh-green); background: var(--off-white); }
        .mm-section { padding: 12px 24px 6px; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-mid); background: var(--off-white); border-top: 1px solid rgba(0,0,0,0.06); }
        .mm-cta { display: block; background: var(--sh-green); color: #fff !important; margin: 16px 24px; padding: 15px !important; text-align: center; font-family: "boreal", sans-serif; font-weight: 700 !important; font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase; border-bottom: none !important; }

        /* ── Hero ── */
        .page-hero { position: relative; height: 480px; overflow: hidden; }
        .page-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
        .page-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%); }
        .page-hero-content { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 48px; color: #fff; }
        .page-hero-content .eyebrow { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.8; margin-bottom: 12px; }
        .page-hero-content h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 400; letter-spacing: -1px; line-height: 1.1; }

        /* ── Content ── */
        .content-wrap { max-width: 900px; margin: 0 auto; padding: 64px 32px; }
        .lead { font-size: 19px; color: var(--text-dark); line-height: 1.65; margin-bottom: 48px; max-width: 680px; }

        /* ── Section ── */
        .section-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--sh-green); margin-bottom: 12px; }
        .section-title { font-size: 28px; font-weight: 400; letter-spacing: -0.5px; color: var(--text-dark); margin-bottom: 20px; }
        .section-body { font-size: 16px; color: var(--text-mid); line-height: 1.75; margin-bottom: 48px; }

        /* ── Highlights grid ── */
        .highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin: 48px 0; }
        .highlight-card { background: var(--off-white); overflow: hidden; }
        .highlight-card .hc-icon { background: var(--sh-green); color: #fff; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; margin: 28px 28px 16px; }
        .highlight-card .hc-icon svg { width: 22px; height: 22px; }
        .highlight-card h3 { font-size: 17px; font-weight: 600; color: var(--text-dark); margin: 0 28px 10px; }
        .highlight-card p { font-size: 14px; color: var(--text-mid); margin: 0 28px 28px; line-height: 1.65; }

        /* ── Tips list ── */
        .tips-list { list-style: none; display: flex; flex-direction: column; gap: 20px; margin: 32px 0 48px; }
        .tips-list li { display: flex; gap: 20px; align-items: flex-start; }
        .tip-num { min-width: 40px; height: 40px; background: var(--sh-green); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; flex-shrink: 0; margin-top: 2px; }
        .tip-body h4 { font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
        .tip-body p { font-size: 15px; color: var(--text-mid); }

        /* ── Image split ── */
        .image-split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 48px 0; }
        .image-split img { width: 100%; height: 280px; object-fit: cover; }

        /* ── CTA band ── */
        .cta-band { background: var(--sh-green); padding: 52px 48px; text-align: center; margin: 64px 0 0; }
        .cta-band h2 { font-size: 28px; font-weight: 400; color: #fff; letter-spacing: -0.5px; margin-bottom: 16px; }
        .cta-band p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 32px; }
        .cta-band a { display: inline-block; background: #fff; color: var(--sh-green); padding: 14px 36px; font-size: 15px; font-weight: 600; transition: opacity .2s; }
        .cta-band a:hover { opacity: 0.9; color: var(--sh-green); }

        /* ── Footer ── */
        footer { background: var(--cream); color: var(--text-mid); padding: 36px 48px; font-size: 13px; border-top: 1px solid rgba(74,120,134,0.15); }
        .footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
        .footer-logo img { height: 22px; }
        .footer-sub { margin-top: 6px; font-size: 12px; }
        .footer-links { display: flex; gap: 24px; }
        .footer-links a { color: var(--text-mid); transition: color .2s; }
        .footer-links a:hover { color: var(--sh-green); }

        /* ── Responsive ── */
        @media (max-width: 768px) {
            .site-header { padding: 0 20px; }
            .breadcrumb-bar { padding: 9px 20px; }
            .header-nav, .lang-toggle, .header-cta { display: none; }
            .hamburger { display: flex; }
            .page-hero { height: 360px; }
            .page-hero-content { padding: 32px 20px; }
            .content-wrap { padding: 40px 20px; }
            .highlights-grid { grid-template-columns: 1fr; }
            .image-split { grid-template-columns: 1fr; }
            .cta-band { padding: 36px 24px; }
            footer { padding: 28px 20px; }
            .footer-inner { flex-direction: column; }
        }        @media (max-width: 640px) { .cky-btn-revisit-wrapper { display: none !important; } }
