main {
    max-width: 1000px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.marge1 {
    text-align: center;
    background-color: #f29930;
    color:#fff;
    width: 100%;
    height: 10vh;
}
.subtitle h1{
    margin-top: 100px;
    margin-bottom: 50px;
    text-align: center;
    color: #f29930;
    
}

.subtitle h2 a{
    color: #f29930;
    font-size: 0.8em;
}

.marge2 {
    width: 100%;
    height: 20vh;

}
p {
    /*margin-left: 5%;*/
    margin-right: 5%;
    font-size: 1.2em;
    text-align: justify;
}
/*-------------*/
/* Container du menu déroulant pour les pages internes */
.alpi-has-children-inner {
    position: relative;
    display: inline-block;
}

/* On réutilise la classe alpi-dropdown avec quelques ajustements */
.alpi-has-children-inner .alpi-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffc685;
    min-width: 180px;
    list-style: none;
    padding: 10px 0;
    margin: 10px 0 0 0; /* Un petit espace avec le haut */
    box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
    display: none; 
    z-index: 9999;
    border-top: #f29930 solid 3px;
    border-radius: 4px;
    z-index: 9999;
}

/* Affichage au survol */
.alpi-has-children-inner:hover .alpi-dropdown {
    display: block;
}

/* Style des liens dans le carré blanc */
.alpi-has-children-inner .alpi-dropdown li {
    display: block;
    width: 100%;
}

.alpi-has-children-inner .alpi-dropdown a {
    display: block;
    padding: 10px 20px;
    color: #333 !important;
    text-decoration: none !important;
    font-size: 0.95rem;
    text-align: left;
    transition: background 0.2s;
}

.alpi-has-children-inner .alpi-dropdown a:hover {
    background-color: #f8f8f8;
    color: #f29930 !important;
}

/* Petit triangle au dessus du menu (optionnel mais joli) */
.alpi-has-children-inner .alpi-dropdown::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent #f29930 transparent;
}
.alpi-has-children-inner::after {
    content: "";
    position: absolute;
    top: 100%; /* Part du bas du lien */
    left: 0;
    width: 100%;
    height: 20px; /* Ajustez cette hauteur selon l'espace vide que vous avez */
    display: block;
    z-index: 1; /* Pour être sûr qu'il soit sous le menu mais capte le survol */
}
/*--------------------*/
