/* ===== PAGE TITLE ===== */
.page-title {
    width: calc(100% - 24px);
    max-width: 1500px;
    margin: 30px auto;
    text-align: center;
}

.page-title h1 {
    font-size: 42px;
    color: #845b7b;
}

/* ===== TERMS CONTAINER ===== */
.terms-container {
    width: calc(100% - 24px);
    max-width: 1000px;
    margin: 0 auto 50px;
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

/* ===== TERMS SECTION ===== */
.terms-section {
    margin-bottom: 40px;
}

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

.terms-section h2 {
    color: #845b7b;
    font-size: 28px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f8edf5;
}

.terms-content {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.terms-content p {
    margin-bottom: 15px;
}

.terms-content p:last-child {
    margin-bottom: 0;
}

/* ===== EMPTY TERMS ===== */
.empty-terms {
    text-align: center;
    padding: 40px 20px;
    color: #888;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .terms-container {
        padding: 25px 20px;
        margin: 0 12px 40px;
        width: calc(100% - 24px);
        border-radius: 16px;
    }

    .page-title h1 {
        font-size: 30px;
    }

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

    .terms-content {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .terms-container {
        padding: 20px 15px;
    }

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

    .terms-content {
        font-size: 14px;
    }
}