/* ===== TERMS CONTENT ===== */
.terms-content {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.terms-intro {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-gray);
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.terms-section {
    margin-bottom: 50px;
}

.terms-section__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 255, 136, 0.2);
}

.terms-section__text {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 20px;
}

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

.terms-section__list > li {
    counter-increment: terms-counter;
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    color: var(--text-gray);
    line-height: 1.9;
}

.terms-section__list > li::before {
    content: counter(terms-counter) ".";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.terms-section__list ul {
    list-style: disc;
    margin-top: 15px;
    margin-left: 20px;
    color: var(--text-gray);
}

.terms-section__list ul li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.terms-date {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    text-align: right;
}

.terms-date p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .terms-intro {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .terms-section {
        margin-bottom: 40px;
    }

    .terms-section__title {
        font-size: 1.25rem;
    }

    .terms-section__list > li {
        padding-left: 30px;
    }
}
