    .thankyou-card {
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 5px 25px rgba(0,0,0,0.06);
        padding: 60px 40px;
        text-align: center;
    }
    .thankyou-icon {
        width: 110px;
        height: 110px;
        border-radius: 50%;
        background: linear-gradient(120deg, #4b7bec, #a55eea);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px auto;
        box-shadow: 0 8px 20px rgba(75, 123, 236, 0.35);
    }
    .thankyou-icon svg {
        width: 52px;
        height: 52px;
        stroke: #ffffff;
        fill: none;
        stroke-width: 3;
        stroke-linecap: round;
        stroke-linejoin: round;
    }
    .thankyou-card h2 {
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 15px;
    }
    .thankyou-card p {
        color: #6c757d;
        font-size: 15.5px;
        max-width: 550px;
        margin: 0 auto 8px auto;
    }
    .thankyou-card .highlight {
        color: #4b7bec;
        font-weight: 600;
    }
    .divider-line {
        width: 60px;
        height: 3px;
        background: linear-gradient(120deg, #4b7bec, #a55eea);
        margin: 25px auto;
        border-radius: 3px;
    }