.thank-you-page {
     background-color: #f5f5f5;
    padding: 80px 24px 120px;
    /* min-height: 60vh; */
    font-family: "Montserrat", sans-serif;
    color: #1a1a1a;
}

.thank-you-page__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.thank-you-page__title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 32px;
}

.thank-you-page__copy {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 48px;
}

.thank-you-page__copy p {
    margin: 0 0 16px;
}

.thank-you-page__copy p:last-child {
    margin-bottom: 0;
}

.thank-you-page__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.thank-you-page__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    height: 56px;
    padding: 0 32px;
    border-radius: 28px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.thank-you-page__btn--primary {
    background-color: #e3051b;
    color: #ffffff;
    border: 1px solid #e3051b;
}

.thank-you-page__btn--primary:hover,
.thank-you-page__btn--primary:focus {
    background-color: #b4001a;
    border-color: #b4001a;
    color: #ffffff;
}

.thank-you-page__btn--secondary {
    background-color: transparent;
    color: #e3051b;
    border: 1px solid #e3051b;
}

.thank-you-page__btn--secondary:hover,
.thank-you-page__btn--secondary:focus {
    background-color: #e3051b;
    color: #ffffff;
}

@media (max-width: 640px) {
    .thank-you-page {
        padding: 48px 16px 80px;
    }
    .thank-you-page__title {
        font-size: 24px;
    }
    .thank-you-page__btn {
        min-width: 0;
        width: 100%;
    }
}
