/* Card Container Layout */
.service-row-banner {
    display: flex;
    flex-direction: row;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    box-sizing: border-box;
}

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

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

/* Content Text Side Layout */
.service-content-side {
    flex: 1.2;
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

/* Headings and Typography Details */
.service-main-heading {
    font-size: 32px;
    font-weight: 800;
    color: #0e2246; 
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.service-sub-heading {
    font-size: 16px;
    font-weight: 700;
    color: #e61d2b; 
    margin: 0 0 20px 0;
    letter-spacing: 0.3px;
}

.service-description-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #556073; 
    margin: 0 0 25px 0;
}

/* Yellow Action/Feature Tag Design (Color removed to allow dashboard inputs) */
.service-footer-badge {
    align-self: flex-start;
    background-color: #ffda1a; 
    font-size: 13px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    line-height: 1.4;
    letter-spacing: 0.2px;
}

/* Responsive Handling - Adapt to Small Screens & Tablets */
@media (max-width: 768px) {
    .service-row-banner {
        flex-direction: column;
        border-radius: 16px;
    }
    
    .service-image-side {
        width: 100%;
        height: 250px;
    }
    
    .service-content-side {
        padding: 30px 20px;
    }
    
    .service-main-heading {
        font-size: 26px;
    }
}
