.simple-page-header {
    padding: 14px 0 45px;
}

.simple-page-header__sides {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.simple-page-header__side--content {
    flex: 1;
    max-width: 770px;
}

.simple-page-header__side--image {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.simple-page-header__image-wrapper {
    width: 342px;
    height: 342px;
    border: 32px solid var(--blue, #1A75BB);
    border-radius: 50%;
    overflow: hidden;
    box-sizing: content-box;
}

.simple-page-header__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.simple-page-header__title {
    font-size: 52px;
    line-height: 60px;
    font-weight: bold;
    margin-bottom: 15px;
}

.simple-page-header__text {
    margin-bottom: 24px;
    font-size: 20px;
    line-height: 36px;
}

.simple-page-header__text p {
    margin-bottom: 32px;
}

.simple-page-header__text p:last-child {
    margin-bottom: 0;
}

.simple-page-header__actions {
    display: flex;
    align-items: center;
    gap: 31px;
}

@media (max-width: 991px) {
    .simple-page-header__sides {
        flex-direction: column;
        align-items: flex-start;
    }

    .simple-page-header__side--content {
        max-width: 100%;
    }

    .simple-page-header__side--image {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .simple-page-header__image-wrapper {
        border-width: 16px; /* Scaled down for mobile */
        width: 200px;
        height: 200px;
    }
}
