.section-terms-banner {
    background: url('../images/terms-and-conditions/banner-bg.png') no-repeat center;
    background-size: cover;
    min-height: clamp(220px, 35vw, 380px);
    display: flex;
    align-items: center;
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-terms-banner h1 {
    font-size: clamp(28px, 5vw, 48px);
    color: #ffffff;
    letter-spacing: 0.3px;
}

@media all and (max-width: 960px) {
    .section-terms-banner {
        min-height: 220px;
    }
}

.terms-content {
    max-width: 960px;
    margin: 0 auto;
}

.terms-content h2,
.terms-content h4 {
    color: var(--PrimaryClr);
    font-weight: 500;
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    line-height: 1.3;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
}

.terms-content p {
    font-size: clamp(1rem, 1.4vw, 1.3125rem);
    line-height: 1.7;
    color: #333333;
    margin-bottom: 1rem;
}

.terms-content p:last-child {
    margin-bottom: 0;
}

.terms-content h3 {
    color: var(--PrimaryClr);
    font-weight: 600;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    line-height: 1.4;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
}

.terms-content a {
    color: var(--PrimaryClr);
    text-decoration: underline;
}

.terms-content a:hover {
    color: var(--BtnHvr);
}

.terms-content ul,
.terms-content ol {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.terms-content ul li,
.terms-content ol li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 0.75rem;
    font-size: clamp(1rem, 1.4vw, 1.3125rem);
    line-height: 1.7;
    color: #333333;
}

.terms-content ul li p,
.terms-content ol li p {
    margin-bottom: 0;
}

.terms-content ul li::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--PrimaryClr);
}

.terms-content ol {
    counter-reset: privacy-footnote;
}

.terms-content ol li {
    counter-increment: privacy-footnote;
}

.terms-content ol li::before {
    content: counter(privacy-footnote) '.';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 600;
    color: var(--PrimaryClr);
    background: none;
    width: auto;
    height: auto;
    border-radius: 0;
}

.terms-content .effective-date {
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    color: #606267;
    margin-bottom: 1.5rem;
}

.terms-content .truste-seal img {
    max-width: 140px;
    height: auto;
}

.section-terms-content {
    background: #ffffff;
}
