        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-deep: #1A344C;
            --primary-mid: #2B5B82;
            --primary-soft: #4A85B0;
            --accent: #C8782E;
            --accent-light: #E09E58;
            --accent-pale: #F2D4B0;
            --bg-warm: #FAF9F5;
            --bg-card: #FEFDFB;
            --bg-cream: #F5F1E9;
            --border-soft: #E6DFD2;
            --border-hover: #C4B89C;
            --text-dark: #1C2936;
            --text-mid: #455560;
            --text-light: #697880;
            --icon-bg: #EEE8DA;
            --badge-bg: #E4EDF5;
            --badge-text: #356B8A;
            --footer-bg: #E2D9C8;
            --footer-text: #6B5C44;
            --footer-border: #D2C4A8;
            --card-shadow: 0 12px 32px -10px rgba(0, 0, 0, 0.06);
            --card-shadow-hover: 0 18px 40px -12px rgba(0, 0, 0, 0.10);
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, 'BlinkMacSystemFont', 'Segoe UI', Roboto, Helvetica, sans-serif;
            background: var(--bg-warm);
            color: var(--text-dark);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeSpeed;
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 28px;
        }

        .skip-link {
            position: absolute;
            top: -100px;
            left: 16px;
            background: var(--primary-deep);
            color: #fff;
            padding: 8px 18px;
            border-radius: 6px;
            z-index: 200;
            text-decoration: none;
            font-weight: 600;
            transition: top 0.3s;
            font-size: 0.9rem;
        }
        .skip-link:focus {
            top: 10px;
        }

        /* Header */
        .header {
            background: rgba(250, 249, 245, 0.94);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid var(--border-soft);
        }
        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 15px 0;
            gap: 18px;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 750;
            background: linear-gradient(135deg, var(--primary-mid), var(--accent));
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            letter-spacing: -0.5px;
            text-decoration: none;
            white-space: nowrap;
        }
        .nav-links {
            display: flex;
            gap: 26px;
            align-items: center;
            flex-wrap: wrap;
            list-style: none;
        }
        .nav-links a {
            text-decoration: none;
            font-weight: 530;
            color: var(--text-mid);
            transition: color 0.22s;
            font-size: 0.96rem;
            position: relative;
            padding: 4px 0;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.28s;
            border-radius: 2px;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent);
        }
        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }
        .nav-badge {
            display: inline-block;
            background: var(--badge-bg);
            color: var(--badge-text);
            font-size: 0.7rem;
            padding: 2px 9px;
            border-radius: 14px;
            margin-left: 3px;
            font-weight: 620;
            vertical-align: middle;
        }

        .section {
            padding: 64px 0;
        }
        .section-alt {
            background: #fff;
        }
        .section-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 720;
            margin-bottom: 40px;
            color: var(--primary-deep);
            letter-spacing: -0.3px;
        }
        .section-subtitle {
            text-align: center;
            color: var(--text-light);
            margin-top: -28px;
            margin-bottom: 44px;
            font-size: 0.94rem;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }

        .value-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
        }
        .value-card {
            background: var(--bg-card);
            border-radius: 24px;
            padding: 30px 22px;
            border: 1px solid var(--border-soft);
            text-align: center;
            transition: 0.3s;
            box-shadow: 0 2px 8px rgba(0,0,0,0.02);
        }
        .value-card:hover {
            transform: translateY(-3px);
            border-color: var(--border-hover);
            box-shadow: var(--card-shadow-hover);
        }
        .value-icon {
            font-size: 2.4rem;
            margin-bottom: 10px;
            display: block;
        }

        .principle-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
            max-width: 700px;
            margin: 0 auto;
        }
        .principle-item {
            background: var(--bg-card);
            border-radius: 16px;
            padding: 18px 22px;
            border: 1px solid var(--border-soft);
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 0.95rem;
            color: var(--text-mid);
            box-shadow: 0 1px 4px rgba(0,0,0,0.015);
        }
        .principle-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent);
            flex-shrink: 0;
        }

        .nav-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 18px;
            max-width: 800px;
            margin: 0 auto;
        }
        .nav-card {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 22px 18px;
            border: 1px solid var(--border-soft);
            text-align: center;
            text-decoration: none;
            color: inherit;
            transition: 0.25s;
            box-shadow: 0 2px 6px rgba(0,0,0,0.015);
        }
        .nav-card:hover {
            border-color: var(--border-hover);
            transform: translateY(-2px);
            box-shadow: var(--card-shadow-hover);
        }
        .nav-card span {
            font-size: 1.8rem;
            display: block;
            margin-bottom: 6px;
        }

        .faq-list {
            max-width: 750px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-item {
            background: var(--bg-card);
            border-radius: 16px;
            padding: 18px 22px;
            border: 1px solid var(--border-soft);
            box-shadow: 0 1px 4px rgba(0,0,0,0.015);
        }
        .faq-item h4 {
            color: var(--primary-deep);
            margin-bottom: 6px;
            font-weight: 650;
        }
        .faq-item p {
            font-size: 0.9rem;
            color: var(--text-mid);
            line-height: 1.6;
        }

        .cta-band {
            padding: 58px 0;
            background: linear-gradient(145deg, #FBF9F4 0%, #F3ECE0 100%);
            text-align: center;
            border-top: 1px solid var(--border-soft);
            border-bottom: 1px solid var(--border-soft);
        }
        .btn-primary {
            background: var(--primary-mid);
            color: #fff;
            padding: 13px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 620;
            transition: all 0.26s;
            box-shadow: 0 6px 18px rgba(43, 91, 130, 0.24);
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: 1rem;
        }
        .btn-primary:hover {
            background: #1F4D6E;
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(43, 91, 130, 0.32);
        }

        /* Footer */
        .footer {
            background: var(--footer-bg);
            color: var(--footer-text);
            padding: 46px 0 24px;
            font-size: 0.86rem;
            border-top: 1px solid var(--footer-border);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-col h4 {
            color: #7A6A50;
            margin-bottom: 14px;
            font-weight: 620;
            font-size: 0.93rem;
        }
        .footer-col a {
            display: block;
            color: #8B7052;
            text-decoration: none;
            margin-bottom: 8px;
            transition: 0.2s;
            font-size: 0.84rem;
        }
        .footer-col a:hover {
            color: var(--accent);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--footer-border);
            color: #A08A6A;
            font-size: 0.8rem;
        }

        @media (max-width: 768px) {
            .navbar { flex-direction: column; }
            .nav-links { justify-content: center; gap: 14px; }
            .section-title { font-size: 1.5rem; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 12px; }
        }