
.ls-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.ls-section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.ls-section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.ls-section-title p {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.ls-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.ls-service-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.ls-service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #f1f8ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3498db;
    font-size: 28px;
}

.ls-service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.ls-service-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Couleurs différentes pour chaque carte */
.ls-service-card:nth-child(1) .ls-service-icon {
    background: #fef6f6;
    color: #e74c3c;
}

.ls-service-card:nth-child(2) .ls-service-icon {
    background: #fef9f1;
    color: #f39c12;
}

.ls-service-card:nth-child(3) .ls-service-icon {
    background: #f1f9f6;
    color: #27ae60;
}

.ls-service-card:nth-child(4) .ls-service-icon {
    background: #f1f6f9;
    color: #2980b9;
}

.ls-service-card:nth-child(5) .ls-service-icon {
    background: #f8f1f9;
    color: #9b59b6;
}

/* Responsive */
@media (max-width: 768px) {
    .ls-services-grid {
        grid-template-columns: 1fr;
    }
    
    .ls-service-card {
        max-width: 400px;
        margin: 0 auto;
    }
}