span.text-brand-olive.font-bold {
    font-weight: bold;
    color: #748B47;
}
.sphonetxt a {
    color: #fff;
}

.profilex1 {
    width: 100%!important;
    max-width: 100%!important;
}
/* Target the profilex1 layout */
.profilex1 {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

/* Text content - left side */
.profilex1 .w-person-content {
    width: 66%;
    order: 1;
    text-align: left;
    font-size: 14px;
}

/* Image - right side */
.profilex1 .w-person-image {
    width: 33%;
    order: 2;
}

.profilex1 .w-person-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Optional: make all inner text 14px */
.profilex1 .w-person-content p,
.profilex1 .w-person-content div,
.profilex1 .w-person-content li {
    font-size: 14px;
    text-align: left;
}

/* Mobile layout */
@media (max-width: 768px) {
    .profilex1 {
        flex-direction: column;
    }

    /* Show image first on mobile */
    .profilex1 .w-person-image {
        width: 100%;
        order: 1;
    }

    .profilex1 .w-person-content {
        width: 100%;
        order: 2;
    }
}