/* Local Experts Section */
.local-experts-section {
    padding: 5rem 0;
    background: #f8f9fa;
    position: relative;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.expert-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.expert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: rgba(45, 106, 79, 0.2);
}

.expert-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2D6A4F 0%, #40916C 100%);
    border-radius: 16px;
    color: white;
    transition: all 0.3s ease;
}

.expert-card:hover .expert-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(45, 106, 79, 0.3);
}

.expert-card h3 {
    color: #2D6A4F;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.expert-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .local-experts-section {
        padding: 3rem 0;
    }
    
    .experts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .expert-card {
        padding: 2rem 1.5rem;
    }
}
