.services-intro-text {
    margin: calc(var(--section-spacing-3xl) + 100px) 0 0;
    padding: 0 var(--page-spacing);
    font-size: var(--hedera-font-xl);
    font-weight: 400;
    width: 80%;
}

.hedera-brand-detail {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--hedera-space-xl);
    margin: var(--section-spacing-xl) 0 var(--section-spacing-3xl);
    padding-left: var(--page-spacing);
}

.hedera-brand-detail__text {
    flex: 0 0 22%;
    width: 100%;
}

.hedera-brand-detail__text p {
    font-size: var(--hedera-font-sm);
    line-height: normal;
}

.hedera-brand-detail__image {
    flex: 1;
    min-width: 0;
}

.hedera-brand-detail__image img {
    display: block;
    width: 100%;
    height: auto;
}

.hedera-luxury-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--hedera-space-3xl);
    background: black;
    padding: var(--page-spacing-xl) var(--page-spacing-2xl);
}

.hedera-luxury-section__image-wrap {
    flex: 0 0 48%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
}

.hedera-luxury-section__image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hedera-luxury-section__content {
}

.hedera-luxury-section__content h2 {
    margin: 0 0 var(--word-spacing-lg);
    font-size: var(--hedera-font-lg);
    font-weight: unset;
    line-height: normal;
    color: white;
}

.hedera-luxury-section__content p {
    font-size: var(--hedera-font-sm);
    font-weight: unset;
    line-height: normal;
    color: white;
    margin-bottom: var(--word-spacing);
}

.hedera-luxury-section__content p:last-child {
    margin-bottom: 0;
}

.hedera-integrated-growth {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 40%;
    column-gap: var(--hedera-space-xl);
    min-height: 820px;
}

.hedera-integrated-growth__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: var(--page-spacing);
}

.hedera-integrated-growth__content h2 {
    margin: 0 0 var(--word-spacing);
    font-size: var(--hedera-font-lg);
    line-height: normal;
    font-weight: unset;
}

.hedera-integrated-growth__intro {
    font-size: var(--hedera-font-md);
    margin: 0 0 var(--word-spacing);
    line-height: normal;
}

.hedera-integrated-growth__body p {
    font-size: var(--hedera-font-sm);
    margin: 0 0 var(--word-spacing);
    line-height: normal;
    color: #000;
}

.hedera-integrated-growth__body p:last-child {
    margin-bottom: 0;
}

.hedera-integrated-growth__image {
    width: 100%;
    height: 100%;
    min-height: 820px;
}

.hedera-integrated-growth__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 1200px) {
    .hedera-luxury-section{
        flex-direction: column;
        gap: 32px;
    }
}
@media (max-width: 768px){
    .hedera-luxury-section__image-wrap {
        max-width: 100%;
    }
    .hedera-brand-detail{
        flex-direction: column-reverse;
        gap: 10px;
        padding: 0 var(--page-spacing);
    }

    .hedera-integrated-growth {
        grid-template-columns: 1fr;
    }

    .hedera-integrated-growth > :first-child {
        order: 2;
        padding-top: var(--hedera-space-xl);
        padding-bottom: var(--hedera-space-xl);
    }

    .hedera-integrated-growth > :last-child {
        order: 1;
    }

    .hedera-integrated-growth__image {
        min-height: unset;
    }

}