.terms {
    padding-top: 40px;
    padding-bottom: 80px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}

.terms h3 {
    margin-top: 2.5em;
    font-size: 1.6em;
    color: #2c3e50;
    border-left: 5px solid #4a6bff;
    padding-left: 12px;
}

.terms ul,
.terms ol {
    padding-left: 1.5em;
    margin-bottom: 1em;
}

.terms li {
    margin-bottom: 0.5em;
}

.terms p,
.terms li {
    color: #333;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1em;
}

.terms br {
    margin-bottom: 1em;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: none;
    }

    from {
        opacity: 0;
        transform: translateY(30px);
    }
}