.tos-container {
    width: 90%;
    max-width: 1000px;
    margin: 80px auto;
    padding: 20px;
    color: #111827;
}

body.dark .tos-container {
    color: #ffffff;
}

.tos-container h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.tos-date {
    font-size: 14px;
    opacity: 0.6;
    margin-bottom: 25px;
}

.tos-section {
    margin-top: 25px;
    padding: 18px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    transition: 0.2s;
}

body.dark .tos-section {
    background: #111111;
    border: 1px solid #222222;
}

.tos-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

body.dark .tos-section:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}

.tos-section h2 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #7c3aed;
}

body.dark .tos-section h2 {
    color: #a855f7;
}

.tos-section p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .tos-container {
        width: 92%;
        margin: 70px auto;
    }

    .tos-container h1 {
        font-size: 2rem;
    }

    .tos-section {
        padding: 16px;
    }

    .tos-section h2 {
        font-size: 16px;
    }

    .tos-section p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .tos-container {
        width: 95%;
        margin: 60px auto;
    }

    .tos-container h1 {
        font-size: 1.7rem;
    }

    .tos-date {
        font-size: 12px;
    }

    .tos-section {
        padding: 14px;
        border-radius: 10px;
    }

    .tos-section h2 {
        font-size: 15px;
    }

    .tos-section p {
        font-size: 12px;
    }
}