.ttr-card {
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid #f1f1f1;
}

.ttr-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px dashed rgb(176, 176, 255);
}

.ttr-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.ttr-card p {
    color: #555;
    margin-bottom: 15px;
}

.ttr-card ul {
    /* padding-left: 18px; */
    margin-bottom: 20px;
}

.ttr-card ul li {
    margin-bottom: 8px;
    color: #444;
    font-size: 14px;
}

.ttr-card a {
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
}

.card-number {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 60px;
    font-weight: 800;
    color: rgb(37 99 235 / 18%)
}