.nav-links {
    gap: 0 !important; /* Force le gap à 0 pour compenser */
}

.nav-links li {
    margin-right: 5px; /* Remet l'ancien espacement qui marchait */
}

.titles {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: -15px;
}

/* Conteneur principal */
.box {
    background-color: #d1d1d1;
    padding: 20px;
    border-radius: 15px;
    width: 90%;
    margin: 2% auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}

/* Sections */
.section {
    margin-bottom: 20px;
}

/* Flèche et titres */
.arrow {
    color: #d36f8c;
    font-weight: bold;
    font-size: 32px;
    margin-right: 5px;
    text-decoration: none;
}

.title {
    font-weight: bold;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Mini images */
.mini-icon {
    width: 24px;
    height: 24px;
}

/* Liste */
ul {
    list-style: none;
    padding: 0;
    margin-top: 5px;
}

ul li {
    font-size: 18px;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

/* Puces personnalisées */
ul li::before {
    content: "◆";
    color: #C894A0;
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 5px;
}

/* Texte en gras */
b {
    font-weight: bold;
}

.seo {
    color: #f9f9f9;
}

.underline {
    text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .box {
        width: 90%;
        margin: 2% auto;
        padding: 15px;
        box-sizing: border-box;
    }

    .title {
        font-size: 18px;
    }

    ul li {
        font-size: 16px;
    }

    .mini-icon {
        width: 22px;
        height: 22px;
    }

    .seo {
        font-size: 7px;
    }
}

@media screen and (max-width: 480px) {
    .box {
        width: 95%;
        margin: 5% auto;
        padding: 10px;
        box-sizing: border-box;
    }

    .title {
        font-size: 16px;
    }

    ul li {
        font-size: 14px;
    }

    .mini-icon {
        width: 18px;
        height: 18px;
    }
}