/* ================= CARD ================= */

.ticket-card{
    background:var(--white);
    border-radius:var(--radius);
    padding:40px;
    box-shadow:var(--shadow);
    max-width:1400px;
    margin-block: 40px;
}

/* ================= HEADING ================= */

.ticket-card h2{
    font-size:2.3rem;
    color:var(--green-dark);
    margin-bottom:20px;
}

/* ================= TEXT ================= */

.ticket-card p{
    font-size:1.15rem;
    line-height:1.8;
    margin-bottom:18px;
    color:var(--text);
}

/* ================= STEPS ================= */

.steps-list{
    margin:18px 0 0;
    padding-left:20px;
}

.steps-list li{
    margin-bottom:18px;
    font-size:1.15rem;
    line-height:1.7;
    color:var(--text);
}

.steps-list strong{
    color:var(--green-dark);
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){
    .ticket-card{
        padding:24px;
    }

    .ticket-card h2{
        font-size:1.8rem;
    }
}