
/* =========================================
   Why Choose Us Section (Category Page)
   ========================================= */
.why-choose-us-section {
    background-color: #e6f4f2; /* Light teal/blue background matching brand */
    padding: 3rem 0;
    margin-bottom: 4rem;
}

.why-choose-us-section .section-title {
    margin-bottom: 2rem;
    color: #003c34;
    font-size: 2.2rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem 4rem; /* Row gap, Col gap */
}

.why-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-inline-start: 2.5rem; /* Gutter for the icon */
}

/* Icon & Title Row */
.why-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.why-icon {
    position: absolute;
    inset-inline-start: 0;
    top: 2px; /* Align with the top of the H3 text */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.why-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.why-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #003c34;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.why-content h3 img {
    opacity: 0.9;
}

.why-content p {
    font-size: 1rem;
    color: #003c34;
    line-height: 1.6;
    margin: 0;
    padding-inline-start: 0; /* Align with left edge or indent? Image looks left aligned */
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-choose-us-section {
        padding: 2.5rem 0;
    }
}
