.terms-section {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.terms-section h1 {
    color: var(--text-dark);
    margin-bottom: 32px;
    text-align: center;
}

.terms-section h2 {
    color: var(--text-dark);
    font-size: 24px;
    margin: 40px 0 16px;
    font-weight: 600;
}

.terms-section p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    text-align: left;
}

.terms-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.terms-section li {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
    list-style-type: disc;
}

.last-updated {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 40px;
    text-align: center;
}

.section-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 40px 0;
}

.highlight-box {
    background-color: var(--primary-light);
    border-radius: var(--radius-md);
    padding: 24px;
    margin: 24px 0;
}

.highlight-box p {
    color: var(--text-dark);
    margin-bottom: 0;
    font-weight: 500;
}

.numbered-list {
    counter-reset: terms-counter;
    list-style: none;
    padding-left: 0;
}

.numbered-list li {
    counter-increment: terms-counter;
    padding-left: 36px;
    position: relative;
    list-style-type: none;
}

.numbered-list li::before {
    content: counter(terms-counter) ".";
    position: absolute;
    left: 0;
    font-weight: 600;
}

@media (max-width: 768px) {
    .terms-section {
        padding: 40px 24px;
    }
    
    .terms-section h1 {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .terms-section h2 {
        font-size: 20px;
        margin: 32px 0 12px;
    }

    .highlight-box {
        padding: 20px;
        margin: 20px 0;
    }
}

@media (max-width: 576px) {
    .terms-section {
        padding: 32px 20px;
    }

    .terms-section h1 {
        font-size: 24px;
    }

    .terms-section h2 {
        font-size: 18px;
    }

    .terms-section p,
    .terms-section li {
        font-size: 15px;
    }

    .highlight-box {
        padding: 16px;
        margin: 16px 0;
    }
}
