 
        /* ── PAGE CONTENT ── */
        .page-wrap {
            max-width: 1100px;
            margin: 0 auto;
            padding: 48px 24px 80px;
        }
 
        .page-title {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 28px;
        }
 
        .policy-block { margin-bottom: 26px; }
 
        .policy-block h2 {
            font-size: 0.88rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 10px;
        }
 
        .policy-block p {
            margin-bottom: 10px;
            color: var(--text);
            font-size: 0.86rem;
            line-height: 1.75;
        }
        .policy-block p:last-child { margin-bottom: 0; }
 
        .policy-block a { color: var(--accent); text-decoration: none; }
        .policy-block a:hover { text-decoration: underline; }
 
        .policy-block ol {
            list-style: none;
            counter-reset: pol;
            display: flex;
            flex-direction: column;
            gap: 9px;
            margin-bottom: 10px;
        }
        .policy-block ol li {
            counter-increment: pol;
            font-size: 0.86rem;
            color: var(--text);
            line-height: 1.75;
            padding-left: 22px;
            position: relative;
        }
        .policy-block ol li::before {
            content: counter(pol) ".";
            position: absolute;
            left: 0;
            color: var(--muted);
            font-weight: 600;
            font-size: 0.84rem;
        }
 
        .policy-block ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 10px;
        }
        .policy-block ul li {
            font-size: 0.86rem;
            color: var(--text);
            line-height: 1.75;
            padding-left: 18px;
            position: relative;
        }
        .policy-block ul li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: 700;
        }
 
        strong { color: var(--dark); font-weight: 700; }
        em { font-style: italic; }
 
        .ext-links { margin-top: 8px; }
        .ext-links a { display: block; font-size: 0.84rem; color: var(--accent); line-height: 2; }
 
        .address-block { margin-top: 14px; font-size: 0.86rem; line-height: 1.9; }
 
        /* ── FOOTER ── */
        footer { background: #0d1f3c; color: rgba(255,255,255,.7); }
        .footer-grid {
            max-width: 1100px;
            margin: 0 auto;
            padding: 48px 24px 36px;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 28px;
        }
        .fc h4 {
            color: #fff;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            margin-bottom: 14px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--accent);
            display: inline-block;
        }
        .fc ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
        .fc ul li a {
            color: rgba(255,255,255,.65);
            font-size: 0.78rem;
            text-decoration: none;
            transition: color .15s;
        }
        .fc ul li a:hover { color: #ff8c5a; }
 
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,.08);
            text-align: center;
            padding: 14px 24px;
            font-size: 0.75rem;
            color: rgba(255,255,255,.35);
        }
 
        /* ── COOKIE BAR ── */
        .cookie-bar {
            position: fixed;
            bottom: 0; left: 0; right: 0;
            background: #1e293b;
            color: rgba(255,255,255,.8);
            font-size: 0.75rem;
            padding: 11px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            z-index: 9999;
            flex-wrap: wrap;
        }
        .cookie-bar a { color: #ff8c5a; text-decoration: underline; }
        .cookie-bar button {
            background: var(--accent);
            color: #fff;
            border: none;
            padding: 7px 22px;
            border-radius: 4px;
            font-family: inherit;
            font-size: 0.78rem;
            font-weight: 700;
            cursor: pointer;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .cookie-bar button:hover { background: #ff6b35; }
 
        /* ── BACK TO TOP ── */
        #btt {
            display: none;
            position: fixed;
            bottom: 60px;
            right: 24px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 50%;
            width: 40px; height: 40px;
            font-size: 1.1rem;
            cursor: pointer;
            z-index: 998;
            box-shadow: 0 4px 12px rgba(0,0,0,.2);
            align-items: center;
            justify-content: center;
        }
        #btt.show { display: flex; }
 
        @media (max-width: 860px) {
            nav ul { display: none; }
            .footer-grid { grid-template-columns: repeat(2,1fr); }
        }