
        /* Section principale */
        .ServiceMaintenance {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            text-align: center;
        }

        /* Titre principal */
        .ServiceMaintenance h1 {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 20px;
            font-weight: bold;
        }

        /* Sous-titre */
        .ServiceMaintenance h2 {
            font-size: 1.8rem;
            color: #007bff;
            margin-bottom: 20px;
            font-weight: 600;
        }

        /* Paragraphe */
        .ServiceMaintenance p {
            font-size: 1rem;
            color: #555;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        /* Points clés */
        .ServiceMaintenance ul {
            list-style-type: none;
            padding: 0;
            margin: 20px 0;
        }

        .ServiceMaintenance ul li {
            font-size: 1.1rem;
            color: #333;
            margin: 10px 0;
            padding-left: 20px;
            position: relative;
        }

        .ServiceMaintenance ul li::before {
            content: "✔";
            color: #007bff;
            position: absolute;
            left: 0;
            top: 0;
        }

        /* Appel à l'action (CTA) */
        .cta {
            background-color: #007bff;
            color: white;
            padding: 20px;
            border-radius: 8px;
            margin-top: 40px;
            font-weight: bold;
        }

        .cta h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .cta button {
            background-color: white;
            color: #007bff;
            border: 2px solid #007bff;
            padding: 12px 24px;
            font-size: 1rem;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            font-weight: 600;
        }

        .cta button:hover {
            background-color: #0056b3;
            color: white;
        }

        /* Animation de l'apparition des éléments */
        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(50px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .ServiceMaintenance .fade-in {
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 1s ease-out forwards;
        }

        .ServiceMaintenance .fade-in:nth-child(1) {
            animation-delay: 0.2s;
        }

        .ServiceMaintenance .fade-in:nth-child(2) {
            animation-delay: 0.4s;
        }

        .ServiceMaintenance .fade-in:nth-child(3) {
            animation-delay: 0.6s;
        }