/* ROOT COLORS */
:root {
    --primary: #3b82f6;
    --secondary: #60a5fa;
    --deep: #1e3a8a;
    --text: #334155;
    --muted: #64748b;
    --bg: #f8fbff;
}

/* PAGE BASE */
body {
    background: var(--bg);
}

/* HERO */
.terms-hero {
    padding: 100px 20px 70px;
    text-align: center;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.6rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    margin-top: 14px;
    font-size: 1.1rem;
    color: var(--muted);
}

.hero-date {
    margin-top: 10px;
    font-size: 0.95rem;
    color: var(--muted);
}

/* CONTENT */
.terms-content {
    max-width: 900px;
    margin: auto;
    padding: 0 20px 120px;
}

/* ITEM */
.terms-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 80px;
}

.terms-item h2 {
    font-size: 1.6rem;
    color: var(--deep);
    margin-bottom: 12px;
}

.terms-item p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text);
    max-width: 760px;
}

/* NUMBER */
.terms-index {
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(
        135deg,
        var(--secondary),
        var(--primary),
        var(--deep)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.35;
    letter-spacing: -2px;
    filter: drop-shadow(0 10px 20px rgba(59,130,246,0.35));
}

/* HOVER POLISH */
.terms-item {
    transition: transform 0.35s ease;
}
.terms-item:hover {
    transform: translateY(-4px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .terms-item {
        padding-left: 0;
    }
    .terms-index {
        position: relative;
        margin-bottom: 8px;
        display: block;
    }
}
