        :root {
            --teal-deep: #0b5c58;
            --teal-mid: #1a7f7a;
            --teal-soft: #e6f5f3;
            --slate-800: #1a3c4a;
            --slate-600: #3e5a6c;
            --slate-400: #5c7380;
            --border-subtle: #e8eef3;
            --shadow-card: 0 2px 8px rgba(0,0,0,0.02);
            --shadow-hover: 0 18px 28px -14px rgba(0,0,0,0.08);
        }
        * { margin:0; padding:0; box-sizing:border-box; }
        body {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
            background:#fefefe; color:#11181c; line-height:1.45;
            -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
        }
        .container { max-width:1300px; margin:0 auto; padding:0 32px; }
        .site-header {
            background:rgba(255,255,255,0.94); backdrop-filter:blur(14px);
            -webkit-backdrop-filter:blur(14px); position:sticky; top:0; z-index:100;
            border-bottom:1px solid rgba(0,0,0,0.05); transition:box-shadow 0.3s ease;
        }
        .site-header.scrolled { box-shadow:0 4px 20px rgba(0,0,0,0.06); }
        .header-flex {
            display:flex; align-items:center; justify-content:space-between;
            padding:14px 0; flex-wrap:wrap; gap:18px;
        }
        .brand { display:flex; align-items:center; gap:10px; text-decoration:none; flex-shrink:0; }
        .brand-logo-img {
            width:40px; height:40px; border-radius:10px;
            background:linear-gradient(135deg, #0f6e6a 0%, #1a8a7e 100%);
            display:flex; align-items:center; justify-content:center; font-size:1.4rem;
        }
        .brand-name { font-size:1.5rem; font-weight:700; letter-spacing:-0.4px; color:#0c4e6e; white-space:nowrap; }
        .brand-name span { font-weight:400; color:#5a7d8c; font-size:0.8rem; margin-left:2px; }
        .nav-links-new { display:flex; gap:22px; align-items:center; flex-wrap:wrap; }
        .nav-links-new a {
            text-decoration:none; font-weight:500; font-size:0.93rem; color:#2c3e50;
            transition:color 0.2s; position:relative; white-space:nowrap;
        }
        .nav-links-new a:hover, .nav-links-new a.active { color:#1a7f7a; }
        .nav-links-new a::after {
            content:''; position:absolute; bottom:-4px; left:0; width:0; height:2px;
            background:#1a7f7a; border-radius:2px; transition:width 0.25s ease;
        }
        .nav-links-new a:hover::after, .nav-links-new a.active::after { width:100%; }
        .btn-ghost {
            border:1px solid #cbd5e1; padding:7px 20px; border-radius:100px;
            background:transparent; font-weight:500; font-size:0.9rem; cursor:pointer;
            text-decoration:none; color:#2c3e50; white-space:nowrap; transition:all 0.2s;
        }
        .btn-ghost:hover { border-color:#1a7f7a; color:#1a7f7a; background:#f0faf9; }

        .page-hero { padding:50px 0 30px; background:#fff; border-bottom:1px solid #f0f4f8; }
        .section-header { text-align:center; margin-bottom:30px; }
        .section-header h2 { font-size:2rem; font-weight:700; color:var(--slate-800); letter-spacing:-0.02em; }
        .section-subtitle { color:var(--slate-400); font-size:0.98rem; margin-top:8px; }

        .faq-list { max-width:850px; margin:30px auto; display:flex; flex-direction:column; gap:20px; }
        .faq-item {
            background:#fff; border:1px solid var(--border-subtle); border-radius:20px;
            padding:24px 28px; transition:all 0.25s; cursor:default;
        }
        .faq-item:hover { border-color:#b8d8d4; box-shadow:var(--shadow-hover); }
        .faq-item h3 { font-size:1.2rem; font-weight:700; color:var(--slate-800); margin-bottom:10px; display:flex; align-items:center; gap:8px; }
        .faq-item p { color:var(--slate-600); font-size:0.95rem; line-height:1.6; }
        .faq-item ul { margin-top:10px; padding-left:20px; color:var(--slate-600); }
        .faq-item ul li { margin-bottom:4px; }

        .insight-box {
            background:#f6faf9; border-radius:24px; padding:28px; margin:30px 0;
            border:1px solid #d0e8e4; display:flex; flex-wrap:wrap; gap:20px; align-items:center;
        }
        .insight-text { flex:1; }
        .insight-text h3 { color:var(--slate-800); margin-bottom:10px; }
        .insight-text p { color:var(--slate-600); font-size:0.93rem; }
        .metric-badge {
            background:#fff; border-radius:16px; padding:14px 20px; text-align:center;
            box-shadow:0 2px 8px rgba(0,0,0,0.02); min-width:100px;
        }
        .metric-badge .metric-num { font-size:1.8rem; font-weight:800; color:#0f6e6a; }
        .metric-badge .metric-label { font-size:0.8rem; color:var(--slate-400); }

        .cta-grid {
            display:grid; grid-template-columns:repeat(auto-fit, minmax(220px,1fr)); gap:16px;
            margin:30px 0;
        }
        .cta-card {
            background:#fafcfd; border:1px solid var(--border-subtle); border-radius:20px;
            padding:24px 20px; text-decoration:none; color:inherit; transition:all 0.3s;
            display:flex; flex-direction:column; gap:10px;
        }
        .cta-card:hover { border-color:#1a7f7a; background:#f9fdfc; transform:translateY(-3px); }
        .cta-card .card-icon { font-size:1.9rem; }
        .cta-card h4 { font-weight:700; color:var(--slate-800); }
        .cta-card p { font-size:0.84rem; color:var(--slate-400); }
        .card-arrow { color:#1a7f7a; font-weight:600; font-size:0.84rem; margin-top:auto; display:flex; align-items:center; gap:4px; }

        .footer-alt {
            background:#f1f5f9; padding:44px 0 32px; font-size:0.88rem; color:var(--slate-400);
            border-top:1px solid #e9edf2;
        }
        .footer-grid { display:flex; flex-wrap:wrap; justify-content:space-between; gap:30px; }
        .footer-col h5 { font-weight:700; color:var(--slate-800); margin-bottom:10px; font-size:0.93rem; }
        .footer-col a { display:block; color:var(--slate-400); text-decoration:none; margin-bottom:6px; font-size:0.86rem; transition:color 0.2s; }
        .footer-col a:hover { color:#1a7f7a; }
        .footer-bottom { text-align:center; margin-top:26px; padding-top:18px; border-top:1px solid #dde4ea; font-size:0.8rem; color:#8a9ba7; }

        @media (max-width:780px) {
            .container { padding:0 18px; }
            .header-flex { gap:12px; }
            .nav-links-new { gap:12px; }
            .nav-links-new a { font-size:0.83rem; }
            .brand-name { font-size:1.25rem; }
            .brand-name span { display:none; }
            .section-header h2 { font-size:1.6rem; }
            .insight-box { flex-direction:column; text-align:center; }
        }
        @media (max-width:480px) {
            .cta-grid { grid-template-columns:1fr; }
        }