/* ========================================================== */
/* TERMS & CONDITIONS PAGE STYLES */
/* ========================================================== */

/* Typography Konten */
.terms-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-dark); /* Mengambil warna dari main.css */
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.terms-content h2:first-child {
    margin-top: 0;
}

.terms-content p, .terms-content li {
    font-size: 1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify; /* Agar teks hukum terlihat rapi rata kanan-kiri */
}

.terms-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.terms-content li {
    margin-bottom: 0.5rem;
}

/* Sidebar Navigasi */
.terms-nav .nav-link {
    color: #64748b;
    padding: 0.75rem 1rem;
    border-left: 3px solid transparent;
    transition: all 0.2s;
    font-size: 0.95rem;
    font-weight: 500;
}

.terms-nav .nav-link:hover {
    color: var(--brand-primary);
    background: #f8fafc;
    padding-left: 1.25rem; /* Efek geser sedikit saat hover */
}

.terms-nav .nav-link.active {
    color: var(--brand-primary);
    font-weight: 700;
    border-left-color: var(--brand-primary);
    background: #eff6ff;
}

/* Kotak Info Penting */
.terms-alert {
    background-color: #fff7ed;
    border: 1px solid #ffedd5;
    color: #9a3412;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}