.terms-page-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin: 80px 0;
}

.terms-sidebar {
    position: relative;
}

.terms-nav-card {
    position: sticky;
    top: 100px;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.update-badge {
    display: inline-block;
    background: #FFF3E8;
    color: #F48817;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 20px;
}

.terms-nav-card h4 {
    margin-bottom: 20px;
    font-size: 22px;
}

.terms-nav-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-nav-card li {
    margin-bottom: 12px;
}

.terms-nav-card a {
    color: #555;
    text-decoration: none;
    transition: .3s;
}

.terms-nav-card a:hover {
    color: #F48817;
    padding-left: 8px;
}

.terms-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.terms-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 35px rgba(0,0,0,.06);
    transition: .3s;
}

.terms-card:hover {
    transform: translateY(-4px);
}

.section-number {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 55px;
    font-weight: 700;
    color: rgba(244,136,23,.12);
}

.terms-card h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.terms-card h3 {
    margin-bottom: 20px;
    color: #222;
}

.intro-text {
    color: #666;
    line-height: 1.8;
}

.terms-card p,
.terms-card li {
    color: #666;
    line-height: 1.9;
}

.terms-card ul {
    padding-left: 20px;
}

html {
    scroll-behavior: smooth;
}

@media (max-width:991px) {

    .terms-page-wrapper {
        grid-template-columns: 1fr;
    }

    .terms-sidebar {
        display: none;
    }

    .terms-card {
        padding: 30px;
    }

    .terms-card h2 {
        font-size: 32px;
    }

}