.expertise-page {
    background-color: #f4f4f4;
    padding: 120px 5% 60px;
    min-height: 100vh;
}
.container { 
    max-width: 1100px; 
    margin: 0 auto; 
}
.header-text {
    margin-bottom: 50px;
    text-align: left;
}
.header-text h1 { 
    font-size: 2.5rem; 
    font-weight: 800; 
    margin-bottom: 10px; 
}
.header-text p { 
    color: #666; 
    max-width: 600px; 
    font-size: 1rem; 
}
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.stat-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid #008ac9;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.stat-card:hover {
    transform: translateY(-5px);
}
.icon-box {
    font-size: 2.5rem;
    color: #008ac9;
    margin-bottom: 15px;
}
.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 5px;
}
.stat-card h3 {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.separator {
    width: 50px;
    border: none;
    border-top: 2px solid #008ac9;
    margin-bottom: 15px;
}
.stat-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}
.info-banner {
    padding: 20px 30px;
    background: #fff;
    border-left: 5px solid #008ac9;
}
.banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #444;
    font-weight: 600;
    font-size: 0.95rem;
}
.banner-content i {
    font-size: 1.5rem;
    color: #008ac9;
}
@media (max-width: 768px) {
    .expertise-page { 
        padding: 100px 15px 40px; 
    }
    .header-text { 
        text-align: center; 
    }
    .header-text p { 
        margin: 0 auto; 
    }
    .stat-number { 
        font-size: 2.5rem; 
    }
}