.terms-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 3rem;
    transition: all 0.3s ease;
}

.terms-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.terms-title {
    font-weight: 600;
    color: #333;
}

.terms-text {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.7;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.terms-text::-webkit-scrollbar {
    width: 6px;
}

.terms-text::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 10px;
}

.fade-in {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}