/* Main Card Wrapper Layout */
.service-row-left-banner {
    display: flex;
    flex-direction: row;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #f2f2f2;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    box-sizing: border-box;
}

/* Left Side Content Container */
.service-content-left-side {
    flex: 1.1;
    padding: 60px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

/* Right Side Image Container */
.service-image-left-side {
    flex: 1;
    min-width: 45%;
    position: relative;
    overflow: hidden;
    display: flex;
}

.service-image-left-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Typography Rules */
.service-left-main-heading {
    font-size: 34px;
    font-weight: 800;
    color: #0d234a; /* Precise dark navy blue color mapping */
    margin: 0 0 12px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.service-left-sub-heading {
    font-size: 16px;
    font-weight: 700;
    color: #e52331; /* Vibrant brand orange/red text color */
    margin: 0 0 24px 0;
    letter-spacing: 0.2px;
}

.service-left-description-text p {
    font-size: 15px;
    line-height: 1.65;
    color: #5b6777; /* Soft readable muted copy gray */
    margin: 0 0 28px 0;
}

/* Dynamic Rounded Badge Container Pill Styling */
.service-left-badge {
    align-self: flex-start;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px;
    line-height: 1.4;
    letter-spacing: 0.1px;
    transition: all 0.3s ease;
}

/* Mobile & Tablet Layout Adaptations */
@media (max-width: 768px) {
    .service-row-left-banner {
        flex-direction: column-reverse; /* Flip layout so image goes up top on mobile devices */
        border-radius: 20px;
    }
    
    .service-image-left-side {
        width: 100%;
        height: 260px;
    }
    
    .service-content-left-side {
        padding: 35px 25px;
    }
    
    .service-left-main-heading {
        font-size: 28px;
    }
}
