    /* Services Grid */
    .services-content {
        padding: 80px 50px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .services-intro {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 60px;
    }

    .services-intro h2 {
        font-size: 36px;
        color: #1e293b;
        margin-bottom: 20px;
    }

    .services-intro p {
        color: #64748b;
        font-size: 16px;
        line-height: 1.8;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 40px;
        margin-bottom: 80px;
    }

    .service-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: all 0.3s;
        border: 2px solid transparent;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        border-color: #27ae60;
    }

    .service-image {
        height: 200px;
        background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .service-image::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
    }

    .service-icon {
        font-size: 72px;
        color: white;
        position: relative;
        z-index: 2;
    }

    .service-content {
        padding: 35px;
    }

    .service-content h3 {
        font-size: 24px;
        color: #1e293b;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .service-content h3 i {
        color: #27ae60;
        font-size: 20px;
    }

    .service-content p {
        color: #64748b;
        line-height: 1.8;
        margin-bottom: 25px;
    }

    .service-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #27ae60;
        text-decoration: none;
        font-weight: 600;
        padding: 12px 25px;
        border: 2px solid #27ae60;
        border-radius: 10px;
        transition: all 0.3s;
    }

    .service-link:hover {
        background: #27ae60;
        color: white;
        transform: translateX(5px);
    }

    /* Why Choose Section */
    .why-choose {
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        padding: 80px 50px;
        color: white;
    }

    .why-choose-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .why-choose h2 {
        font-size: 36px;
        text-align: center;
        margin-bottom: 60px;
    }

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

    .why-card {
        background: rgba(255, 255, 255, 0.1);
        padding: 35px;
        border-radius: 15px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        transition: all 0.3s;
    }

    .why-card:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-5px);
    }

    .why-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 32px;
    }

    .why-card h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .why-card p {
        color: #cbd5e1;
        line-height: 1.6;
        font-size: 15px;
    }

    /* CTA Section - Utilise les variables et shared-components.css */
    /* Note: Les styles .cta-section, .cta-btn sont définis dans shared-components.css */

    /* Responsive */
    @media (max-width: 768px) {
        .services-content {
            padding: 60px 20px;
        }

        .why-choose {
            padding: 60px 0;
        }

        .why-choose-container {
            padding: 0 20px;
        }

        .cta-section {
            padding: 60px 20px;
        }

        .services-grid {
            grid-template-columns: 1fr !important;
            gap: 30px;
        }

        .why-grid {
            grid-template-columns: 1fr !important;
            gap: 20px;
        }

        .service-content {
            padding: 25px;
        }

        .service-icon {
            font-size: 56px;
        }
    }

    @media (max-width: 480px) {
        .services-content,
        .why-choose,
        .cta-section {
            padding: 40px 15px;
        }

        .service-content {
            padding: 20px;
        }

        .service-content h3 {
            font-size: 20px;
        }
    }

/* Service Features List - Remove default bullets */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-features li {
    color: #64748b;
    line-height: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: #27ae60;
    font-size: 14px;
    flex-shrink: 0;
}
