.registration-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 32px;
    margin-top: 32px;
    background-color: #fff;
    box-sizing: border-box;
    border-radius: 32px;
}


.registration-section__title {
    text-align: center;
    font-size: calc(1.375rem + 1.5vw);
    color: #000;
    font-weight: 600;
    line-height: 1.2;
}


.registration-section__description {
    text-align: center;
    font-size: 20px;
    color: #000;
    font-weight: 300;
    line-height: 1.5;
}

.registration-section__image-wrapper {
    display: flex;
    justify-content: center;
    max-height: 300px;
}

.registration-section__image {
    width: 100%;                
    max-width: 450px;
    height: auto;
    object-fit: contain;
}