/* Services Page Specific Styles */
.services-intro {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
    line-height: 1.6;
}

.traffic-recovery-banner {
    background: linear-gradient(135deg, #f8f9fc 0%, #e3e6f0 100%);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-left: 4px solid #1cc88a;
}

.recovery-content {
    flex: 2;
    padding-right: 30px;
}

.recovery-content h3 {
    margin-top: 0;
    color: #4e73df;
    font-size: 1.8rem;
}

.recovery-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    border-left: 1px solid #e3e6f0;
    padding-left: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #4e73df;
}

.stat-desc {
    font-size: 0.9rem;
    color: #858796;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-box {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-box img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.service-box h3 {
    color: #4e73df;
    font-size: 1.4rem;
    margin-top: 0;
}

.service-box ul {
    padding-left: 20px;
    margin-top: 15px;
}

.service-box ul li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .traffic-recovery-banner {
        flex-direction: column;
    }
    
    .recovery-content {
        padding-right: 0;
        padding-bottom: 20px;
    }
    
    .recovery-stats {
        flex-direction: row;
        border-left: none;
        border-top: 1px solid #e3e6f0;
        padding-left: 0;
        padding-top: 20px;
    }
}
