.confirmation-body-page {
    font-family: 'Inter', sans-serif;
    background-color: #f3f3f3;
    display: flex;
    justify-content: center;
    align-items: center;

    margin: 0;
    flex-direction: column;
    gap: 120px;
    padding-bottom: 60px;
}

.confirmation-card {
    display: flex;
    width: 100%;
    max-width: 868px;
    padding: 50px;
    flex-direction: column;
    align-items: center;
    border-radius: 30px;
    background: var(--First-color-text, #FFF);
}
.company-section-title-bg {
    width: 1000px;
    height: 5px;
    border-radius: 30px;
    background: var(--Red, #CC2929);
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
}

.confirmation-header__title {
    color: var(--Text, #121212);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin: 0;
}

.confirmation-header__subtitle {
    color: var(--Text, #121212);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

.confirmation-section {
    margin-top: 40px;
    width: 100%;
}
.confirmation-section-one-block{
    width: 350px;
    height: 5px;
    border-radius: 30px;
    background: var(--Red, #CC2929);
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
}
.confirmation-section__title {
    align-self: stretch;
    color: var(--Text, #121212);
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin: 0;
    margin-bottom: 0;
}

.confirmation-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #2B2B2B;
}

.confirmation-item:last-child {
    border-bottom: none;
}

.confirmation-item__label {
    color: var(--Text, #121212);
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    margin: 0;
}

.confirmation-item__value {
    font-family: 'Inter', sans-serif;
    color: var(--Text, #121212);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
}

.confirmation-section-two-block{
    border-radius: 30px;
    background: var(--Red, #CC2929);
    height: 2px;
    align-self: stretch;
    margin-top: 40px;
}

.confirmation-actions {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    align-self: stretch;
    margin-top: 40px;
}

.confirmation-btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

.confirmation-btn--secondary {
    border-radius: 26px;
    border: 1px solid var(--Text, #121212);
    display: flex;
    height: 60px;
    padding: 10px 40px;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background-color: #ffffff;
    color: var(--Text, #121212);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.confirmation-btn--secondary:hover {
    background-color: #ffffff;
    border: 1px solid var(--Text, #CC2929);
    color: #CC2929;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.confirmation-btn--primary {
    color: #fff;
    border-radius: 26px;
    background: var(--Red, #CC2929);
    color: var(--First-color-text, #FFF);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    display: flex;
    height: 60px;
    padding: 10px 40px;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.confirmation-btn--primary:hover {
    background-color: #121212;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (min-width: 1280px) and (max-width: 1440px) {
    .company-section-title-bg {
        width: 850px;

    }
}
@media screen and (min-width: 744px) and (max-width: 1279px) {
    .confirmation-body-page {
        padding-left: 20px;
        padding-right: 20px;
        margin-left: auto;
        margin-right: auto;
    }
    .company-section-title-bg {
        width: 450px;
        height: 4px;
    }
    .confirmation-section-one-block{
        width: 250px;
        height: 5px;
    }
    .confirmation-card {
        padding: 50px 20px;
    }
}
@media screen and (max-width: 743px) {
    .confirmation-body-page {
        padding-left: 10px;
        padding-right: 10px;
        margin-left: auto;
        margin-right: auto;
    }
    .company-section-title-bg {
        width: 250px;
        height: 3px;
    }
    .confirmation-section-one-block{
        width: 250px;
        height: 4px;
    }
    .confirmation-card {
        padding: 50px 20px;
    }
    .confirmation-header__title {
        font-size: 24px;
    }
    .confirmation-section__title {
        font-size: 20px;
    }
    .confirmation-header__subtitle {
        font-size: 12px;
    }
    .confirmation-item__label {
        font-size: 12px;
    }
    .confirmation-item__value {
        font-size: 12px;
    }
    .confirmation-section {
        margin-top: 20px;
    }
    .confirmation-section__title {
        margin-bottom: 0;
    }
    .confirmation-section-two-block{
        margin-top: 20px;
    }
    .confirmation-item {
        padding: 10px 0;
    }
}
@media screen and (max-width: 480px) {
    .confirmation-actions {
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 30px;
        align-self: stretch;
        margin-top: 20px;
    }
    .confirmation-btn--primary, .confirmation-btn--secondary {
        width: 100%;
        justify-content: center;
        font-size: 20px;
        height: 50px;
    }
}