.thank-you {
    max-width: 640px;
    margin: 60px auto;
    padding: 48px 40px;
    text-align: center;
    background: linear-gradient(135deg, #E9E4F0, #D3CCE3);
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(43, 43, 58, 0.12);
}

.thank-you-title {
    margin: 0 0 16px;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    color: #2b2b3a;
}

.thank-you-text {
    margin: 0 auto 32px;
    max-width: 480px;
    font-size: 18px;
    line-height: 1.6;
    color: #2b2b3a;
}

.btn-thank-you {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    color: #000 !important;
    background: linear-gradient(135deg, #e340c0 0%, #eea8df 100%);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(227, 64, 192, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-thank-you-icon {
    font-size: 22px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.btn-thank-you:hover,
.btn-thank-you:focus {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(227, 64, 192, 0.45);
}

.btn-thank-you:hover .btn-thank-you-icon,
.btn-thank-you:focus .btn-thank-you-icon {
    transform: translateX(-4px);
}