/* TopChanceOffers – UK offers site (unique design) */
:root {
    --tco-bg: #0f1419;
    --tco-surface: #1a2332;
    --tco-surface-2: #243044;
    --tco-text: #e8ecf1;
    --tco-text-muted: #8b9cb4;
    --tco-accent: #c9a227;
    --tco-accent-hover: #dbb83a;
    --tco-accent-soft: rgba(201, 162, 39, 0.15);
    --tco-border: rgba(255, 255, 255, 0.08);
    --tco-footer-bg: #0a0e12;
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --header-h: 72px;
    --container: min(100% - 2rem, 1140px);
    --radius: 14px;
    --radius-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: var(--font-sans);
    background: var(--tco-bg);
    color: var(--tco-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--tco-accent);
    text-decoration: none;
}

a:hover {
    color: var(--tco-accent-hover);
}

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

/* Skip link */
.skip-link {
    position: absolute;
    top: -3rem;
    left: 0.5rem;
    z-index: 9999;
    padding: 0.5rem 1rem;
    background: var(--tco-accent);
    color: #0f1419;
    font-weight: 700;
    border-radius: var(--radius);
    transition: top 0.2s;
}

.skip-link:focus,
.skip-link:focus-visible {
    top: 0.5rem;
    outline: 2px solid var(--tco-accent);
    outline-offset: 2px;
}

/* Focus visible – accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--tco-accent);
    outline-offset: 2px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 20, 25, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--tco-border);
    transition: box-shadow 0.3s;
}

.header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--tco-text);
}

.logo:hover {
    color: var(--tco-accent);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--tco-accent), #a68520);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 22px;
    height: 22px;
    fill: #0f1419;
}

.nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--tco-text-muted);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: color 0.2s, background 0.2s;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--tco-accent);
    background: var(--tco-accent-soft);
}

.nav-cta {
    margin-left: 0.5rem;
    padding: 0.5rem 1.25rem !important;
    background: var(--tco-accent) !important;
    color: #0f1419 !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--tco-accent-hover) !important;
    color: #0f1419 !important;
}

/* Burger – visible from 991px and below */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 1002;
    border-radius: var(--radius);
    color: var(--tco-text);
}

.nav-toggle:hover {
    background: var(--tco-accent-soft);
    color: var(--tco-accent);
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-8px);
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 991px) {
    .nav-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--tco-surface);
        border-left: 1px solid var(--tco-border);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: calc(var(--header-h) + 1.5rem) 1.5rem 1.5rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }

    .nav.is-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
    }

    .nav-link {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 0.5rem;
        text-align: center;
    }
}

/* Main */
.main {
    padding-top: var(--header-h);
    min-height: 100vh;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero */
.hero {
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 100%;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201, 162, 39, 0.12) 0%, transparent 55%);
    pointer-events: none;
}

.hero-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-icon {
    position: absolute;
    left: var(--x, 50%);
    top: var(--y, 50%);
    animation: heroFloat 6s ease-in-out infinite;
    animation-delay: var(--d, 0s);
    opacity: 0.2;
}

.hero-icon--diamond {
    width: 12px;
    height: 12px;
    background: var(--tco-accent);
    transform: rotate(45deg);
    border-radius: 2px;
}

.hero-icon--circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--tco-accent);
    background: transparent;
}

.hero-icon--star {
    width: 14px;
    height: 14px;
    background: var(--tco-accent);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.hero-icon--diamond {
    animation-name: heroFloatDiamond;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.2;
    }
    25% {
        transform: translateY(-8px) translateX(4px) scale(1.05);
        opacity: 0.35;
    }
    50% {
        transform: translateY(-4px) translateX(-6px) scale(0.95);
        opacity: 0.25;
    }
    75% {
        transform: translateY(-10px) translateX(2px) scale(1.02);
        opacity: 0.3;
    }
}

@keyframes heroFloatDiamond {
    0%, 100% {
        transform: rotate(45deg) translateY(0) translateX(0);
        opacity: 0.2;
    }
    50% {
        transform: rotate(135deg) translateY(-6px) translateX(3px);
        opacity: 0.3;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-icon {
        animation: none;
        opacity: 0.25;
    }
}

.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--tco-accent);
    background: var(--tco-accent-soft);
    padding: 0.35rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: var(--tco-text);
}

.hero-desc {
    font-size: 1.0625rem;
    color: var(--tco-text-muted);
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--tco-accent);
    color: #0f1419;
}

.btn-primary:hover {
    background: var(--tco-accent-hover);
    color: #0f1419;
    transform: translateY(-1px);
}

.btn-ghost {
    background: var(--tco-surface-2);
    color: var(--tco-text);
    border: 1px solid var(--tco-border);
}

.btn-ghost:hover {
    background: var(--tco-surface);
    border-color: var(--tco-accent);
    color: var(--tco-accent);
}

/* Section */
.section {
    padding: 3.5rem 0;
}

.section-head {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--tco-accent);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--tco-text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.section-sub {
    font-size: 0.9375rem;
    color: var(--tco-text-muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
}

/* Product grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
    .product-row .product-name {
        display: none;
    }
}

.product-card {
    background: linear-gradient(165deg, var(--tco-surface) 0%, rgba(26, 35, 50, 0.95) 100%);
    border: 1px solid var(--tco-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.35s ease, transform 0.25s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tco-accent), rgba(201, 162, 39, 0.5));
    opacity: 0;
    transition: opacity 0.25s;
}

.product-card:hover {
    border-color: rgba(201, 162, 39, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(201, 162, 39, 0.08);
    transform: translateY(-4px);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:has(.product-detail.is-open) {
    border-color: rgba(201, 162, 39, 0.2);
}

.product-card:has(.product-detail.is-open)::before {
    opacity: 1;
}

.product-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem;
}

.product-brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.product-logo {
    width: 72px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.product-name {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--tco-text);
    letter-spacing: -0.01em;
}

.product-actions {
    flex-shrink: 0;
}

.product-toggle {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--tco-accent);
    background: var(--tco-accent-soft);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.product-toggle:hover {
    background: rgba(201, 162, 39, 0.25);
    color: var(--tco-accent-hover);
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: 0 2px 12px rgba(201, 162, 39, 0.15);
}

.product-toggle[aria-expanded="true"] {
    background: var(--tco-accent);
    color: #0f1419;
    border-color: var(--tco-accent);
    box-shadow: 0 2px 14px rgba(201, 162, 39, 0.35);
}

.product-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.product-detail.is-open {
    max-height: 800px;
}

.product-detail-inner {
    padding: 1.1rem 1.35rem 1.35rem;
    border-top: 1px solid var(--tco-border);
    margin: 0 1.35rem 1.35rem;
    margin-top: 1rem;
    padding-top: 1.1rem;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 0 0 12px 12px;
}

.product-meta {
    font-size: 0.8125rem;
    color: var(--tco-text-muted);
    margin-bottom: 0.6rem;
    font-weight: 500;
}

.product-desc {
    font-size: 0.9375rem;
    color: var(--tco-text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.product-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.1rem;
}

.product-tags li {
    font-size: 0.8125rem;
    color: var(--tco-text);
    background: rgba(201, 162, 39, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(201, 162, 39, 0.15);
}

.product-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.85rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--tco-accent) 0%, #b8941f 100%);
    color: #0f1419;
    border-radius: var(--radius);
    transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.25);
    letter-spacing: 0.02em;
}

.product-cta:hover {
    background: linear-gradient(135deg, var(--tco-accent-hover) 0%, var(--tco-accent) 100%);
    color: #0f1419;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(201, 162, 39, 0.35);
}

/* Methodology / FAQ sections */
.section-muted {
    background: var(--tco-surface);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--tco-surface-2);
    border: 1px solid var(--tco-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--tco-text);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--tco-text-muted);
    line-height: 1.65;
}

/* CTA section */
/* FAQ */
.faq-list {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--tco-border);
    padding: 1.25rem 0;
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-q {
    font-size: 1rem;
    font-weight: 700;
    color: var(--tco-text);
    margin: 0 0 0.5rem 0;
}

.faq-a {
    font-size: 0.9375rem;
    color: var(--tco-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* CTA section */
.cta-section {
    padding: 3rem 0;
    text-align: center;
}

.cta-section .section-sub {
    margin-bottom: 1.5rem;
}

/* Contact page */
.contact-page {
    padding: 2rem 0 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--tco-text);
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 0.9375rem;
    color: var(--tco-text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-detail strong {
    display: block;
    font-size: 0.875rem;
    color: var(--tco-text);
    margin-bottom: 0.25rem;
}

.contact-detail span,
.contact-detail a {
    font-size: 0.9375rem;
    color: var(--tco-text-muted);
}

.contact-detail a:hover {
    color: var(--tco-accent);
}

.contact-form-card {
    background: var(--tco-surface);
    border: 1px solid var(--tco-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}

.contact-form-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--tco-text);
    margin-bottom: 1.25rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--tco-text);
    margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.65rem 0.9rem;
    font-size: 0.9375rem;
    font-family: inherit;
    color: var(--tco-text);
    background: var(--tco-surface-2);
    border: 1px solid var(--tco-border);
    border-radius: var(--radius);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--tco-accent);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form-card .btn {
    width: 100%;
    margin-top: 0.5rem;
}

/* Success modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(15, 20, 25, 0.85);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    position: relative;
    background: var(--tco-surface);
    border: 1px solid var(--tco-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: scale(0.95);
    transition: transform 0.25s ease;
}

.modal-overlay.is-visible .modal-box {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--tco-text-muted);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    border-radius: var(--radius);
    transition: color 0.2s, background 0.2s;
}

.modal-close:hover {
    color: var(--tco-text);
    background: var(--tco-surface-2);
}

.modal-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: rgba(201, 162, 39, 0.2);
    color: var(--tco-accent);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 56px;
    border-radius: 50%;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--tco-text);
    margin-bottom: 0.5rem;
}

.modal-text {
    font-size: 0.9375rem;
    color: var(--tco-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal-box .btn {
    min-width: 120px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: var(--tco-footer-bg);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--tco-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-brand h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--tco-text);
    margin-bottom: 0.75rem;
}

.footer-brand p,
.footer-contact p {
    font-size: 0.875rem;
    color: var(--tco-text-muted);
    line-height: 1.7;
}

.footer-contact a {
    color: var(--tco-accent);
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-links h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--tco-text-muted);
    margin-bottom: 0.75rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    display: block;
    font-size: 0.9375rem;
    color: var(--tco-text-muted);
    padding: 0.25rem 0;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--tco-accent);
}

.rg-block h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--tco-text-muted);
    margin-bottom: 0.75rem;
}

.rg-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.rg-grid a {
    display: block;
    transition: opacity 0.2s;
}

.rg-grid a:hover {
    opacity: 0.85;
}

.rg-grid img {
    height: 36px;
    width: auto;
    max-width: 90px;
    object-fit: contain;
}

.footer-bottom {
    border-top: 1px solid var(--tco-border);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--tco-text-muted);
    line-height: 1.6;
}

.footer-18 {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--tco-surface-2);
    color: var(--tco-text-muted);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Policy pages */
.page-content {
    padding: 2rem 0 3rem;
    max-width: 720px;
    margin: 0 auto;
}

.page-content h1 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--tco-text);
}

.page-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--tco-text);
}

.page-content p,
.page-content li {
    font-size: 0.9375rem;
    color: var(--tco-text-muted);
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

.page-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.page-content a {
    color: var(--tco-accent);
}

.page-content a:hover {
    text-decoration: underline;
}

.page-updated {
    font-size: 0.875rem;
    color: var(--tco-text-muted);
    margin-bottom: 1.5rem;
}
