
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        }

        /* Styles du Header */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 1rem;
            background: linear-gradient(to right, #3931af 30%, #00c6ff);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        .navbar .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; }
        .navbar-brand { margin-right: 1rem; font-size: 1.25rem; white-space: nowrap; }
        .link2 { color: white; text-decoration: none; transition: all 0.3s ease; }
        .link2:hover { color: #e0e0e0; transform: translateY(-1px); }
        .navbar-nav { display: flex; flex-direction: column; padding-left: 0; margin-bottom: 0; list-style: none; }
        .navbar-nav li { padding: 0.5rem 0; }
        .navbar-collapse { display: none; flex-basis: 100%; flex-grow: 1; align-items: center; }
        .navbar-collapse.show { display: flex; flex-direction: column; }
        .ml-auto { margin-left: auto !important; }
        .m-2 { margin: 0.5rem !important; }
        .mx-3 { margin-right: 1rem !important; margin-left: 1rem !important; }
        .my-auto { margin-top: auto !important; margin-bottom: auto !important; }
        .navbar-toggle { padding: .25rem .75rem; font-size: 1.25rem; line-height: 1; background-color: transparent; border: 1px solid rgba(255, 255, 255, 0.5); border-radius: .25rem; display: none; }
        .navbar-toggle-icon { display: inline-block; width: 1.5em; height: 1.5em; vertical-align: middle; background: no-repeat center center; background-size: 100% 100%; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
        .dropdown { position: relative; display: inline-block; }
        .dropdown-menu { display: none; position: absolute; background-color: #f9f9f9; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); z-index: 1000; list-style: none; padding: 0; margin: 0; border-radius: .25rem; }
        .dropdown-menu.show { display: block; }
        .dropdown-item { color: black; padding: 12px 16px; text-decoration: none; display: block; }
        .dropdown-item:hover { background-color: #f1f1f1; }
        .btn-custom { color: white !important; border: 1px solid white !important; background-color: transparent !important; padding: .375rem .75rem; font-size: 1rem; border-radius: .25rem; cursor: pointer; transition: all 0.3s ease; }
        .btn-custom:hover { color: #3931af !important; background-color: white !important; transform: translateY(-2px); }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Contenu principal */
        main.content-wrapper {
            padding: 0 0 60px 0;
        }
        
        /* Section catégories */
        .categories-container {
            text-align: center;
            margin-bottom: 60px;
            background: white;
            border-radius: 20px;
            padding: 50px 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .categories-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            /* background: linear-gradient(to right, #3931af 30%, #00c6ff); */
        }
        
        h1 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #3931af, #00c6ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        h2 {
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: #003250;
            font-weight: 600;
        }

                #h33 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #3931af, #00c6ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            text-align: center;

        }

        .mb-5{
            margin-bottom: 5rem;
        }

        .subtitle-text {
            font-size: 0.95rem;
            color: #666;
            margin-bottom: 40px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
            padding: 20px;
            background: linear-gradient(135deg, #f8f9ff, #e8f4f8);
            border-radius: 15px;
            border-left: 4px solid #3931af;
        }
        
        .category-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }
        
        .category-card {
            background: linear-gradient(135deg, #ffffff, #f8f9ff);
            border: 2px solid transparent;
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            font-weight: 600;
            color: #3931af;
            font-size: 1.1rem;
            position: relative;
            overflow: hidden;
        }

        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.5s;
        }

        .category-card:hover::before {
            left: 100%;
        }
        
        .category-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 35px rgba(57, 49, 175, 0.2);
            border-color: #3931af;
        }
        
        .category-card.active {
            background: linear-gradient(135deg, #3931af, #00c6ff);
            color: white;
            border-color: #003250;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 40px rgba(57, 49, 175, 0.3);
        }
        
        .navbar-collapse.active{
            background: linear-gradient(to right, #3931af 30%, #00c6ff);
        }

        /* Conteneur du formulaire dynamique */
        #dynamic-form-container {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            margin-bottom: 40px;
        }

        #dynamic-form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(to right, #3931af 30%, #00c6ff);
        }
        
        .form-placeholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 400px;
            color: #666;
            font-size: 1.2rem;
            text-align: center;
        }
        
        .form-placeholder svg {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
            fill: #005a87;
        }

        /* Conteneur du formulaire général */
        #general-form-container {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            padding: 40px;
            position: relative;
            overflow: hidden;
        }

        #general-form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(to right, #3931af 30%, #00c6ff);
        }

        .general-form #h33 {
            /* text-align: center; */
            margin-bottom: 30px;
            color: #3931af !important;
            /* font-size: 2rem; */
            position: relative;
        }

        .general-form #h33::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 280px;
            height: 4px;
            background: linear-gradient(to right, #3931af, #00c6ff);
            border-radius: 2px;
        }

                /* .general-form h3 {
            text-align: center;
            margin-bottom: 30px;
            color: #3931af !important;
            font-size: 2rem;
            position: relative;
        }

        .general-form h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 280px;
            height: 4px;
            background: linear-gradient(to right, #3931af, #00c6ff);
            border-radius: 2px;
        } */
        
        /* Footer */
        .footer { 
            bottom: 0; 
            width: 100%; 
            /* background: linear-gradient(135deg, #2dce89, #11cdef); */
            background-color: #2dce89;
            padding: 0.8rem 0; 
            color: #003250;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        }
        .text-center { text-align: center !important; }
        .mb-3 { margin-bottom: 1rem !important; }
        .my-3 { margin-top: 1rem !important; margin-bottom: 1rem !important; }
        .m-1 { margin: 0.25rem !important; }
        .m-3 { margin: 1rem !important; }
        .mr-2 { margin-right: 0.5rem !important; }
        .linkNuxt { 
            color: #003250; 
            text-decoration: none; 
            transition: all 0.3s ease;
            /* font-weight: 500; */
        }
        .linkNuxt:hover {
            color: #001a2e;
            transform: translateY(-1px);
        }
        .text-white1 { color: #003250; }
        
        /* Animation de chargement */
        .loader {
            width: 60px;
            height: 60px;
            border: 5px solid rgba(57, 49, 175, 0.2);
            border-radius: 50%;
            border-top: 5px solid #3931af;
            animation: spin 1s linear infinite;
            margin: 40px auto;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Effet de particules pour le background */
        /* .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(57, 49, 175, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        } */

        .add-devis-btn {
    /* background: linear-gradient(135deg, #3931af, #00c6ff); */
    background: #3931af;

    color: white;
    border: none;
    border-radius: 15px;
    padding: 15px 25px;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 30px auto;
    box-shadow: 0 8px 25px rgba(57, 49, 175, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    width: fit-content;
}

.add-devis-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(57, 49, 175, 0.4);
    color: white;
}

.plus-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    /* font-weight: bold; */
    font-weight: 700;

}
    .image-responsive {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto; /* centrer l’image */
    }

    /* Optionnel : pour adapter le conteneur */
    .image-container {
      width: 100%;
      max-width: 800px; /* limite de largeur */
      margin: auto;
      padding: 1rem;
    }

      .image-responsive:hover {
      transform: scale(1.02);
      cursor: pointer;
    }

        /* Responsive */
        @media (max-width: 768px) {

              .add-devis-btn {
    font-size: 1.2rem;
}


            .navbar-toggle {
                display: block;
            }
            
            .navbar-collapse {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: linear-gradient(to right, #3931af 30%, #00c6ff);
                padding: 20px;
                z-index: 1000;
                border-radius: 0 0 15px 15px;
            }
            
            .navbar-collapse.active {
                display: block;
            }
            
            .navbar-nav {
                flex-direction: column;
            }
            
            .navbar-nav li {
                margin: 10px 0;
            }
            
            .category-cards {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 20px;
            }
            
            h1 {
                font-size: 1.8rem;
            }
            
            h2 {
                font-size: 1.35rem;
            }

            .mb-5 {
                margin-bottom: 1rem;
            }

            .subtitle-text {
                font-size: 0.8rem;
                padding: 10px;
            }

            .categories-container {
                padding: 30px 20px;
            }

            #general-form-container {
                padding: 25px;
            }
        }

        /* AJOUT : Styles pour l'affichage sur grand écran (desktop) */
        @media (min-width: 769px) {
            .navbar-toggle {
                display: none;
            }

            .navbar-collapse {
                display: flex !important;
                flex-basis: auto;
            }

            .navbar-nav {
                flex-direction: row;
                align-items: center;
            }
        }
   
        /* CUSTOM START */

        #vud_devis_formulaire {
  background: #58f2af !important;
}

body #vud_mb_js_box .vud_reinitialise .devistap_step h2 {
  color: #003250 !important;

}

body #vud_mb_js_box .vud_reinitialise #vud_devis_header strong  {
    color: #003250 !important;

}

body #vud_mb_js_box .vud_reinitialise #vud_devis_header {
    text-align: center !important;

}

#devistap_progression_barre {

  background: #2dce89 !important;

  border: 2px solid #58f2af !important;
}

#devistap_progression .devistap_progression_point_rouge {
  border: 3px solid #58f2af !important;

}

#devistap_progression .devistap_progression_point {
  background: #2dce89 !important;

}

a.vud_devis_bouton_bleu {
  background: #003250 !important;
}

/* h2{
  color: #fff !important;
} */

body #vud_mb_js_box .vud_reinitialise .vud_devis_index_vignette h3 {

  color: white !important;
  text-shadow: 3px 3px 3px rgb(0, 0, 0) !important;
}

body #vud_mb_js_box .vud_reinitialise #vud_devis_header h2  {
    color: #3931af !important;
    /* text center */
    text-align: center !important;
    font-weight: bold;
}

body #vud_mb_js_box .vud_reinitialise .vud_devis_step_title {
  color: #3931af !important;
}

body #vud_mb_js_box .vud_reinitialise .vud_devis_step_rond {
  background: #3931af !important;
}

body #vud_mb_js_box .vud_reinitialise .vud_devis_bouton_bleu, body #vud_mb_js_box .vud_reinitialise a.vud_devis_bouton_bleu {
    background: #3931af !important;

}


body #vud_mb_js_box .vud_reinitialise .vud_table {

  text-align: center;
  margin: auto;
}

#vud_explication{
   font-size: 0.95rem;
            color: #666;
            margin-bottom: 40px;
            /* max-width: 650px; */
            /* margin-left: auto;
            margin-right: auto; */
            line-height: 1.7;
            padding: 20px;
            background: linear-gradient(135deg, #f8f9ff, #e8f4f8) !important;
            border-radius: 15px;
            border-left: 4px solid #3931af;
}

.vud_devis_liste {
  position: fixed !important;  /* pour se positionner par rapport à la fenêtre */
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important; /* pour recentrer selon la taille propre */
  z-index: 9999 !important; /* pour être au-dessus */
  /* background-color: #003250 !important; */
}

/* Plein écran en dessous de 768px */
@media (max-width: 768px) {
.vud_devis_liste {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  width: 80vw !important;
  height: 80vh !important;
  transform: translate(-50%, -50%) !important;
  z-index: 9999 !important;
  border-radius: 15px !important; /* si tu veux des coins arrondis */
  overflow: auto; /* utile si le contenu déborde */
}

}

#vud_devis * {
  border-radius: 10px !important;
}

body #vud_mb_js_box .vud_reinitialise input
 {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
    margin-top: 7px !important;
}

body #vud_mb_js_box .vud_reinitialise select
 {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
    margin-top: 7px !important;
}

body #vud_mb_js_box .vud_reinitialise textarea
 {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
    margin-top: 7px !important;
}

/* .vud_center {
display: none !important;
} */

body #vud_mb_js_box .vud_reinitialise .vud_devis_liste h3 {
    /* background: #3931af !important; */
            background: linear-gradient(to right, #3931af 30%, #00c6ff) !important;

}


body #vud_mb_js_box .vud_reinitialise .vud_devis_liste li a {
    background: #f7f7f7 !important;
}

body #vud_mb_js_box .vud_reinitialise .vud_devis_liste li a:hover {
    background:  #00c6ff !important;
}

/* body #vud_mb_js_box .vud_reinitialise .vud_devis_bouton_bleu, body #vud_mb_js_box .vud_reinitialise a.vud_devis_bouton_bleu {

    display: none !important;

}

body #vud_mb_js_box .vud_reinitialise .vud_devis_bouton_bleu, body #vud_mb_js_box .vud_reinitialise a.vud_devis_bouton_bleu {

    display: inline-block;
} */

#vud_mb_js_box .vud_center a.vud_devis_bouton_bleu {
    display: none !important;
}