/* ════════════════════════════════
   TERMS & CONDITIONS PAGE STYLES
   Scoped with .np-terms prefix
════════════════════════════════ */

.np-terms-content-wrap {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    padding: 4rem;
    position: relative;
    z-index: 10;
    border: 1px solid var(--border);
}

.np-terms-section {
    margin-bottom: 3rem;
}

.np-terms-section:last-child {
    margin-bottom: 0;
}

.np-terms-h3 {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.np-terms-h3 i {
    color: var(--saffron);
    font-size: 1.4rem;
}

.np-terms-text {
    color: var(--text-mid);
    line-height: 1.8;
    font-size: 1.05rem;
}

.np-terms-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.np-terms-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-mid);
}

.np-terms-list li::before {
    content: "\f26a";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: var(--saffron);
    font-weight: bold;
}

.np-terms-last-updated {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    display: block;
}

@media (max-width: 991px) {
    .np-terms-content-wrap {
        padding: 2.5rem 1.5rem;
    }
}
