/* Reset et styles de base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Arial, sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
            background-color: #f9f9f9;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }
        
        a:hover {
            color: #777;
        }
        

        /* Hero Section pour Our Services */
 /* Hero Section - Même style que la page d'accueil */
    .page-services .services-hero {
        height: 100vh; /* Changé de 60vh à 100vh */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0 20px;
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1516035069371-29a1b244cc32?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
        color: white;
        margin-top: 70px;
    }
    
    .page-services .services-hero h1 {
        font-size: 48px;
        font-weight: 300;
        margin-bottom: 20px;
        letter-spacing: 2px;
    }
    
    .page-services .services-hero p {
        font-size: 20px;
        max-width: 700px;
        margin-bottom: 40px;
        font-weight: 300;
    }
        /* Services Main Content */
        .page-services .services-main {
            padding: 80px 10%;
            background-color: white;
        }
        
        .page-services .services-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }
        
        .page-services .services-intro h2 {
            font-size: 36px;
            font-weight: 300;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }
        
        .page-services .services-intro p {
            font-size: 18px;
            color: #555;
            line-height: 1.8;
        }
        
        /* Services Detailed Grid */
        .page-services .services-detailed {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
            margin-top: 50px;
        }
        
        .page-services .service-detail {
            display: flex;
            flex-direction: column;
        }
        
        .page-services .service-image {
            height: 300px;
            overflow: hidden;
            margin-bottom: 25px;
            border-radius: 4px;
        }
        
        .page-services .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .page-services .service-image:hover img {
            transform: scale(1.05);
        }
        
        .page-services .service-text h3 {
            font-size: 24px;
            margin-bottom: 15px;
            font-weight: 400;
            color: #222;
        }
        
        .page-services .service-text p {
            color: #666;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .page-services .service-features {
            list-style-type: none;
            margin-bottom: 20px;
        }
        
        .page-services .service-features li {
            padding: 8px 0;
            color: #555;
            position: relative;
            padding-left: 25px;
        }
        
        .page-services .service-features li:before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #222;
        }
        
        .page-services .service-cta {
            display: inline-block;
            padding: 10px 25px;
            background-color: #222;
            color: white;
            border-radius: 4px;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .page-services .service-cta:hover {
            background-color: #444;
            color: white;
        }
        
        /* Testimonials Section */
        .page-services .testimonials {
            padding: 80px 10%;
            background-color: #f5f5f5;
            text-align: center;
        }
        
        .page-services .testimonials h2 {
            font-size: 36px;
            font-weight: 300;
            margin-bottom: 60px;
            letter-spacing: 1px;
        }
        
        .page-services .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .page-services .testimonial-card {
            background-color: white;
            padding: 30px;
            border-radius: 4px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .page-services .testimonial-text {
            font-style: italic;
            color: #555;
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .page-services .testimonial-author {
            font-weight: 600;
            color: #222;
        }
        
        .page-services .testimonial-role {
            font-size: 14px;
            color: #888;
        }
        

        
        /* Responsive */
        @media (max-width: 1024px) {
            .page-services .services-detailed {
                grid-template-columns: 1fr;
            }
            
            .page-services .service-image {
                height: 250px;
            }
        }
        
        @media (max-width: 768px) {

            
    .logo {
        margin-bottom: 0px;
    }
            
            nav ul {
                flex-direction: column;
                align-items: center;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .page-services .social-icons {
                margin: 15px 0 0;
            }
            
            .page-services .services-hero h1 {
                font-size: 36px;
            }
            
            .page-services .services-hero p {
                font-size: 18px;
            }
            
            .page-services .testimonial-grid {
                grid-template-columns: 1fr;
            }