.why-maint-wrapper-819c7a6d {
    width: 100%;
    box-sizing: border-box;
}

.why-maint-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 56px;
    box-sizing: border-box;
}

/* Intro Grid (Left Image, Right Content) */
.why-maint-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.why-maint-img-col {
    width: 100%;
    display: flex;
}

.why-maint-img-col img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 400px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.why-maint-text-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-maint-title {
    font-size: 32px;
    line-height: 1.25;
    margin: 0;
    font-weight: 700;
}

.why-maint-desc {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* 4 Columns Cards Grid */
.why-maint-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

.why-maint-card {
    background: #ffffff;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    height: 100%;
}

.why-maint-card:hover {
    transform: translateY(-5px);
}

.why-maint-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.why-maint-card-title {
    font-size: 18px;
    line-height: 1.4;
    margin: 0;
    font-weight: 700;
}

.why-maint-card-desc {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* --- Responsive Settings --- */

/* Tablet (2 cols grid, reverse intro on mobile) */
@media (max-width: 1024px) {
    .why-maint-intro-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .why-maint-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile (1 col grid, image first in mobile view as requested) */
@media (max-width: 767px) {
    .why-maint-cards-grid {
        grid-template-columns: 1fr;
    }
    
    /* Ensure on mobile the photo shows first, then the text */
    .why-maint-intro-grid {
        display: flex;
        flex-direction: column;
    }

    .why-maint-img-col {
        order: 1; /* Show first */
    }

    .why-maint-text-col {
        order: 2; /* Show second */
    }

    .why-maint-title {
        font-size: 26px;
    }
}
