: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; }
.text-center { text-align: center; }

/* --- HERO SECTION --- */
.terms-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;
}

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

.terms-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 --- */
.terms-content { padding: 60px 0 100px; }

.terms-block {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

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

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

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

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

.terms-list {
    list-style: none; padding-left: 20px; margin-bottom: 20px;
}

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

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

.terms-list li strong { color: #fff; font-weight: 500; }
.terms-block a { color: var(--accent); text-decoration: none; border-bottom: 1px solid transparent; transition: 0.3s; }
.terms-block a:hover { border-bottom-color: var(--accent); }

/* Contact Block */
.contact-block {
    background: rgba(20, 5, 5, 0.4);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-details p { margin-bottom: 5px; color: #fff; }

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

/* --- ANIMATION --- */
.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 --- */
@media (max-width: 768px) {
    .terms-hero h1 { font-size: 2.5rem; }
    .terms-block h2 { font-size: 1.6rem; }
    .contact-block { padding: 25px; }
}