left        /* Centrer le logo */


h2{
    padding: 20px 0;
    color:#0056b3;
}

/* Conteneur des liens */
.link-container {
    display: flex;
    justify-content: center; /* Centrer les liens */
    gap: 20px; /* Espacement entre les liens */
    margin-top: 10px; /* Ajout d'espace au-dessus */
}

/* Stylisation des liens */
.link-container a {
    color: #007BFF;
    text-decoration: underline;
    font-size: 16px;
    cursor: pointer;
}

.link-container a:hover {
    color: #0056b3;
}


        #moteur-image {
            width: 50% !important;
        }

        .logo-container {
            text-align: center;
            margin-top: 20px;
        }

        .logo {
            max-width: 250px;
            height: auto;
        }

        /* Général */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            background-color: #f9f9f9;
        }

        h1 {
            text-align: center;
            margin: 20px 0;
            color: #333;
        }

        .container {
            display: flex;
            flex-direction: row;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background: #fff;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        /* Responsive : Colonne gauche au-dessus du formulaire */
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
            }

            .left-column {
                order: -1;
            }

            .summary {
                display: none;
            }
        }

        /* Colonne gauche */
        .left-column {
            flex: 50%;
            text-align: center;
            padding: 5%;
            max-height: 400px; /* ou toute autre hauteur fixe souhaitée */
            overflow-y: auto;
        }

        .right-column {
            flex: 50%;
            text-align: center;
        }

        .image-group {
            display: flex;
            justify-content: space-between;
            gap: 10px;
        }

        .image-group img {
            max-width: 50%;
            height: auto;
        }

        .triple-image-group {
            display: flex;
            justify-content: space-between;
            gap: 10px;
            margin-top: 10px;
        }

        .triple-image-group img {
            max-width: 33%;
            height: auto;
        }

        .thumbnail-link {
            display: inline;
            margin-top: 10px;
            color: blue;
            text-decoration: underline;
            cursor: pointer;
            font-weight: 800;
            margin-right: 10px;
        }

        .summary {
            margin-top: 10px;
            margin-bottom: 20px;
            padding: 10px;
            background: #e3f2fd;
            border: 1px solid #90caf9;
            border-radius: 5px;
            text-align: left;
        }

        .summary-columns {
            display: flex;
            justify-content: space-between;
            gap: 20px;
        }

        .summary-columns .column-left,
        .summary-columns .column-right {
            flex: 1;
            padding: 10px;
        }

        .summary-columns p {
            margin: 5px 0;
        }

        /* Formulaire */

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .required::after {
            content: " *";
            color: red;
        }


        .inline-group {
            display: flex;
            justify-content: space-between;
            gap: 20px;
        }

        .inline-group .form-group {
            flex: 1;
        }

        .form-group select {
            width: 100%;
            padding: 8px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        .form-group input,
        .form-group textarea {
            width: 80%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }


        .dimension-group {
            display: flex;
            gap: 10px;
        }

        /* Centrage du bouton */
        .button-container {
            text-align: center;
            margin-top: 20px;
        }

        button {
            background-color: #007BFF;
            color: #fff;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            border-radius: 4px;
            font-size: 16px;
        }

        button:disabled {
            background-color: #aaa;
            cursor: not-allowed;
        }

        button:hover:not(:disabled) {
            background-color: #0056b3;
        }

        /* Modale */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
        }

        .modal img {
            max-width: 80%;
            max-height: 80%;
        }

        .modal .close {
            position: absolute;
            top: 20px;
            right: 20px;
            color: #fff;
            font-size: 30px;
            cursor: pointer;
        }


        /* Conteneur des colonnes */
        .summary-columns {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            margin-top: 10px;
        }

        .summary-columns .column-left,
        .summary-columns .column-right {
            flex: 1;
            padding: 10px;
            background-color: #f9f9f9;
            border: 1px solid #ddd;
            border-radius: 5px;
        }

        .summary-columns p {
            margin: 5px 0;
            font-size: 14px;
            line-height: 1.5;
        }

        /* Responsive : Une seule colonne sur petits écrans */
        @media (max-width: 768px) {
            .summary-columns {
                flex-direction: column;
                gap: 10px;
            }
        }

        /* Conteneur pour l'effet 3D */
        .image-group img,
        .triple-image-group img {
            perspective: 1000px;
            /* Ajoute de la perspective */
            display: inline-block;
            transition: transform 0.1s ease, box-shadow 0.3s ease;
            transform-origin: center;
            transform-style: preserve-3d;
        }

        /* Image avec rotation interactive */
        .image-group img:hover,
        .triple-image-group img:hover {
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transform: scale(1.05);

        }

        /* Effet de retour à la normale */
        .image-group img,
        .triple-image-group img {
            transform: rotateY(0deg) rotateX(0deg);

        }

        .step-indicator .step {
            display: none;
            padding: 10px 20px;
            background: #f1f1f1;
            color: #333;
            border-radius: 5px;
            margin: 5px;
            transition: background 0.3s ease-in-out;
        }

        .step-indicator .step.active {
            background: #007BFF;
            color: #fff;
        }

        .seo-content {
            margin: 40px auto;
            max-height: 200px;
            overflow-y: auto;
            padding: 20px;
            text-overflow: ellipsis; /* Ajoute des points de suspension si le texte est tronqué */
            background-color: #f9f9f9;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: Arial, sans-serif;
            color: #333;
            line-height: 1.6;
            position: relative;
        }

        .seo-content a{
            color: blue;
            font-weight: 700;
        }
        
        .seo-content a:hover{
            color: black;
            font-weight: 700;
        }
        