:root {
    --primary: #000000;
    --primary-light: #1a1a1a;
    --accent: #b49164;
    --accent-dark: #8e6f4a;
    --text-dark: #111111;
    --text-muted: #666666;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    font-family: 'Instrument Sans', sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Terms Hero */
.terms-hero {
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(78, 77, 77, 0.7)), url('/assets/images/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    border-bottom: 1px solid var(--accent-glow);
    overflow: hidden;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.breadcrumbs {
    display: flex;
    gap: 10px;
    justify-content: center;
    font-size: 14px;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
}

.breadcrumbs span.current {
    color: var(--accent);
}

/* Main Content */
.terms-content {
    padding: 100px 0;
    background: var(--bg-light);
}

.terms-card {
    background: var(--white);
    padding: 80px;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
}

.terms-section {
    margin-bottom: 60px;
}

.terms-section:last-child {
    margin-bottom: 0;
}

.terms-section h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    letter-spacing: -0.5px;
}

.terms-section h2 i {
    width: 42px !important;
    height: 42px !important;
    background: rgba(180, 145, 100, 0.1);
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(180, 145, 100, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.terms-section p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.terms-section ul {
    list-style: none;
    padding-left: 5px;
}

.terms-section ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 15px;
}

.terms-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.last-updated {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: var(--accent);
    font-weight: 700;
    text-align: center;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 10px !important; /* 10px side coverage as requested */
    }

    .terms-hero {
        height: 220px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .terms-content {
        padding: 40px 0;
    }

    .terms-card {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .terms-section h2 {
        font-size: 20px;
    }

    .terms-section p {
        font-size: 15px;
    }
}
