﻿#proven-expertise {
    padding: 48px 20px;
    background: linear-gradient(180deg,#f7fbff, #ffffff);
}

    #proven-expertise .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    #proven-expertise h2 {
        font-size: 28px;
        margin: 0 0 8px;
        color: #0b2b3a;
    }

    #proven-expertise p.lead {
        margin: 0 0 28px;
        color: #475569;
        font-size: 16px;
    }

.features-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.feature {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(12,40,60,0.06);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

    .feature .icon {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        display: inline-grid;
        place-items: center;
        background: linear-gradient(135deg,#e6f4ff,#dff7ec);
        border-radius: 10px;
    }

    .feature h3 {
        margin: 0;
        font-size: 18px;
        color: #072233;
    }

    .feature p {
        margin: 6px 0 0;
        color: #334155;
        font-size: 14px;
        line-height: 1.45;
    }
/* Accent styles for variety */
.icon.experience {
    background: linear-gradient(135deg,#eef2ff,#e6f2ff);
}

.icon.cert {
    background: linear-gradient(135deg,#fff7ed,#fff1e6);
}

.icon.health {
    background: linear-gradient(135deg,#ecfdf5,#ddf7ef);
}

.icon.access {
    background: linear-gradient(135deg,#fff5f7,#fff0f4);
}

.icon.innov {
    background: linear-gradient(135deg,#f0f9ff,#e6f5ff);
}

.icon.global {
    background: linear-gradient(135deg,#f8fafc,#eef2ff);
}

.icon.support {
    background: linear-gradient(135deg,#f9fbf0,#eefbe9);
}
/* Responsive tweaks */
@media (min-width:900px) {
    #proven-expertise h2 {
        font-size: 34px;
    }
}



