:root {
    --bg: #050505;
    --card-bg: #0a0a0a;
    --accent: #b91c1c; /* Veloura Red */
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    margin: 0;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.max-w-800 { max-width: 800px; margin: 0 auto; } /* Narrower for reading */
.text-center { text-align: center; }

/* --- HERO SECTION --- */
.policy-hero {
    padding: 50px 20px 60px;
    background: radial-gradient(circle at center, #150505 0%, #000 80%);
}

.eyebrow {
    text-transform: uppercase; letter-spacing: 0.25em; color: var(--accent); font-size: 0.75rem; display: block; margin-bottom: 15px;
}

.policy-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1; margin-bottom: 15px; color: #fff;
}

.policy-hero p {
    font-size: 0.9rem; color: var(--text-muted); font-style: italic; letter-spacing: 0.05em;
}

.divider-line {
    width: 1px; height: 50px; background: linear-gradient(to bottom, var(--accent), transparent); margin: 40px auto 0;
}

/* --- CONTENT SECTION --- */
.policy-content { padding: 60px 0 100px; }

.policy-block {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.05); /* Very subtle separator */
}

.policy-block:last-child { border-bottom: none; }

.intro-text {
    font-size: 1.1rem; line-height: 1.8; color: var(--text-main);
}

/* Headings */
.policy-block h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

/* Red accent before headings */
.policy-block h2::before {
    content: ''; display: inline-block; width: 4px; height: 24px;
    background-color: var(--accent); margin-right: 15px; border-radius: 2px;
}

.policy-block h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 25px;
}

/* Body Text */
.policy-block p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 300;
}

/* Lists */
.policy-list {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 20px;
}

.policy-list li {
    position: relative;
    margin-bottom: 12px;
    color: var(--text-muted);
    line-height: 1.7;
}

.policy-list li::before {
    content: '•';
    color: var(--accent);
    position: absolute;
    left: -20px;
    font-size: 1.2rem;
    line-height: 1.5;
}

/* Sub-blocks (Indent) */
.sub-block {
    margin-left: 20px;
    margin-bottom: 20px;
    border-left: 1px solid var(--border);
    padding-left: 20px;
}

.note {
    font-size: 0.9rem;
    background: rgba(255,255,255,0.02);
    padding: 15px;
    border-radius: 4px;
    border-left: 2px solid var(--text-muted);
}

/* Contact Block */
.contact-block {
    background: rgba(20, 5, 5, 0.4);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 8px;
}
.contact-details p { margin-bottom: 5px; color: #fff; }
.contact-details a { color: var(--accent); text-decoration: none; transition: 0.3s; }
.contact-details a:hover { color: #fff; text-decoration: underline; }

/* Consent Note */
.consent-note {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    color: #666;
    font-size: 0.85rem;
}

/* --- ANIMATIONS --- */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.6s, transform 0.6s; }
.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .policy-hero h1 { font-size: 2.5rem; }
    .policy-block h2 { font-size: 1.6rem; }
    .sub-block { margin-left: 0; padding-left: 15px; }
    .contact-block { padding: 25px; }
}