.thanks-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    min-height: calc(100vh - 200px);
    width: 880px;
    z-index: 2;
    margin: 0 auto;
}

.thanks-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 60px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 18px 39px 0px rgba(27, 22, 90, 0.1),
        0px 71px 71px 0px rgba(27, 22, 90, 0.09),
        0px 160px 96px 0px rgba(27, 22, 90, 0.05),
        0px 285px 114px 0px rgba(27, 22, 90, 0.01),
        0px 445px 125px 0px rgba(27, 22, 90, 0);
    overflow: hidden;

    width: 100%;
}

/* Thumbs Up Icon */
.thanks-icon {
    width: 47px;
    height: 86px;
    color: #2020B3;
}

.thanks-icon svg {
    width: 100%;
    height: 100%;
}

/* Content Section */
.thanks-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.thanks-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 30px;
    color: #2020B3;
    text-align: center;
    margin: 0;
}

.thanks-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    color: #000;
    text-align: center;
    max-width: 470px;
    margin: 0;
}

/* Order Section */
.thanks-order-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.thanks-order-number {
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    color: #2020B3;
    text-align: center;
    margin: 0;
}

.thanks-download-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 292px;
    height: 50px;
    padding: 12px 16px;
    background-color: #2020B3;
    border: 2px solid #fff;
    border-radius: 6px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 34px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.16);
}

.thanks-download-button:hover {
    background-color: #1a1a99;
}

/* Footer Text */
.thanks-footer-text {
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    color: #000;
    text-align: center;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .thanks-container {
        padding: 20px;
        width: 100%;
        align-items: flex-start;
    }

    .thanks-card {
        padding: 28px 24px;
        gap: 30px;
        border-radius: 20px;
        z-index: 2;
    }

    .thanks-icon {
        width: 40px;
        height: 73px;
    }

    .thanks-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .thanks-description {
        font-size: 16px;
    }

    .thanks-order-number {
        font-size: 18px;
    }

    .thanks-download-button {
        width: 100%;
        max-width: 292px;
    }

    .thanks-footer-text {
        font-size: 16px;
    }
}
