.service-overview {
    background: #fff;
}

.service-content h2 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.service-content .lead {
    font-size: 1.2rem;
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 8px 0;
    color: #7f8c8d;
    font-size: 1.05rem;
}

.service-list li i {
    color: #28a745;
    margin-right: 10px;
}

.service-image img {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Feature Cards */
.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 2rem;
    color: #fff;
}

.feature-card h4 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Area Cards */
.area-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid #2c3e50;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.area-icon {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 2px solid #e9ecef;
}

.area-icon i {
    font-size: 1.8rem;
    color: #2c3e50;
}

.area-card h4 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.area-card p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c3e50, #3498db);
}

.cta-section h2 {
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .service-content h2 {
        font-size: 1.8rem;
    }
    
    .service-content .lead {
        font-size: 1.1rem;
    }
    
    .feature-card, .area-card {
        padding: 30px 20px;
    }
    
    .feature-icon, .area-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .area-icon i {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .service-content h2 {
        font-size: 1.6rem;
    }
    
    .feature-card, .area-card {
        padding: 25px 15px;
    }
}

