/* Service Block Widget Styles - with high specificity to override defaults */
.lt-service-block,
.lt-service-block * {
    box-sizing: border-box;
}

.lt-service-block {
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    font-family: 'Outfit', 'Inter', -apple-system, sans-serif;
    color: #000000;
    line-height: 1.5;
}

.lt-service-container {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px !important;
    width: 100%;
    box-sizing: border-box;
}

/* Layout Positions */
.lt-layout-right .lt-service-container {
    flex-direction: row-reverse;
}

.lt-service-image-col {
    flex: 0 0 50%;
    max-width: 50%;
}

.lt-service-content-col {
    flex: 1;
}

.lt-service-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.lt-service-number-box {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #FFC107;
    color: #000;
    padding: 12px 24px;
    font-weight: 800;
    font-size: 1.4rem;
    z-index: 2;
    border-bottom-right-radius: 12px;
    display: inline-block;
}

.lt-layout-right .lt-service-number-box {
    left: auto;
    right: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 12px;
}

.lt-service-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 12px;
    color: #006CB4;
}

.lt-service-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 10px 0 0 !important;
    color: #000000;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.lt-service-tagline {
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 600;
    color: #006CB4;
    margin-bottom: 40px;
    line-height: 1.4;
}

.lt-service-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lt-feature-item {
    position: relative;
    padding-left: 24px;
    color: #555555;
    line-height: 1.6;
    font-size: 1.1rem;
    font-weight: 500;
}

.lt-feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background-color: #FFC107;
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .lt-service-container {
        flex-direction: column !important;
        gap: 30px;
        max-width: calc(100% - 40px);
        margin: 0 20px;
        padding: 20px;
    }
    
    .lt-service-title {
        font-size: 2rem !important;
    }
    
    .lt-service-image-col, .lt-service-content-col {
        width: 100%;
        max-width: 100%;
    }

    .lt-service-image-wrapper img {
        aspect-ratio: 4/3;
        height: auto;
    }

    .lt-service-number-box {
        padding: 8px 16px;
        font-size: 1.1rem;
    }
}