.service-info {
    background: #FCF5FC;
    margin-bottom: 0 !important;
}

.service-info__inner {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.service-info__content-card {
    flex: 0 0 calc(58% - 13px);
    background: #FFFFFF;
    border-radius: 25px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    min-height: 505px;
}

.service-info__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
}

.service-info__title {
    font-family: Manrope, sans-serif;
    font-weight: 600;
    font-size: 55px;
    line-height: 64px;
    color: #5C075E;
    margin: 0;
}

.service-info__text {
    font-family: Manrope, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    color: #5C075E;
}

.service-info__text p { margin: 0 0 16px 0; }
.service-info__text p:last-child { margin-bottom: 0; }

.service-info__text--collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-info__load-more {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: Manrope, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    color: #5C075E;
    text-decoration: none;
    transition: opacity 0.2s ease;
    text-align: left;
    margin-top: -10px;
}

.service-info__load-more:hover { opacity: 0.7; }

.service-info__hide {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: Manrope, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    color: #5C075E;
    text-decoration: none;
    transition: opacity 0.2s ease;
    text-align: left;
    margin-top: -10px;
}

.service-info__hide:hover { opacity: 0.7; }

.service-info__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: Manrope, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    color: #5C075E;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.service-info__link:hover { opacity: 0.7; }

.service-info__photo-card {
    flex: 0 0 calc(42% - 13px);
    background: #E0E0DF;
    border-radius: 25px;
    overflow: hidden;
    height: 505px;      
    align-self: flex-start; 
    position: relative;
}

.service-info__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    inset: 0;
}

@media (max-width: 1024px) {
    .service-info__inner {
        gap: 20px;
    }

    .service-info__content-card {
        padding: 30px;
        border-radius: 20px;
        min-height: auto;
    }

    .service-info__content {
        gap: 15px;
    }

    .service-info__title {
        font-size: 34px;
        line-height: 36px;
    }

    .service-info__text {
        font-size: 14px;
        line-height: 22px;
    }

    .service-info__load-more,
    .service-info__hide,
    .service-info__link {
        font-size: 14px;
        line-height: 19px;
    }

    .service-info__hide::after {
        content: ' ✕';
        color: #8D2A8F;
        font-weight: 400;
        margin-left: 4px;
    }

    .service-info__photo-card {
        border-radius: 20px;
        height: auto;
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .service-info__inner {
        flex-direction: column;
    }

    .service-info__content-card,
    .service-info__photo-card {
        flex: none;
        width: 100%;
    }

    .service-info__photo-card {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .service-info { margin-bottom: 35px !important; }

    .service-info__content-card {
        padding: 20px;
        border-radius: 20px;
    }

    .service-info__title {
        font-size: 24px;
        line-height: 27px;
    }

    .service-info__text {
        font-size: 12px;
        line-height: 18px;
    }

    .service-info__load-more,
    .service-info__hide,
    .service-info__link {
        font-size: 12px;
        line-height: 16px;
    }

    .service-info__photo-card {
        min-height: 240px;
        border-radius: 20px;
    }
}