.aide-page {
    padding: 54px 0;
}

.aide-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.aide-menu,
.aide-content {
    background: #fffaf0;
    color: #1d120a;
    border: 1px solid rgba(217,170,79,.35);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.aide-menu {
    padding: 22px;
    position: sticky;
    top: 110px;
}

.aide-menu h2,
.aide-content h2 {
    margin-top: 0;
    font-family: Georgia, "Times New Roman", serif;
}

.aide-menu a {
    display: block;
    padding: 12px 14px;
    margin-bottom: 8px;

    border-radius: 10px;
    border: 1px solid #eadcc9;

    color: #2b1a0f;
    text-decoration: none;
    background: #fff;
}

.aide-menu a.active,
.aide-menu a:hover {
    background: #d49a2a;
    border-color: #d49a2a;
    color: #120900;
    font-weight: 700;
}

.aide-content {
    padding: 28px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid #eadcc9;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.faq-item summary {
    padding: 16px 18px;
    cursor: pointer;
    font-weight: 700;
    color: #2b1a0f;
}

.faq-item summary:hover {
    background: #f5efe6;
}

.faq-reponse {
    padding: 0 18px 18px;
    line-height: 1.55;
    color: #3a2415;
}

@media (max-width: 850px) {
    .aide-layout {
        grid-template-columns: 1fr;
    }

    .aide-menu {
        position: static;
    }

    .aide-menu a {
        display: inline-flex;
        margin: 0 6px 8px 0;
    }

    .aide-content {
        padding: 22px;
    }
}
.faq-reponse a {
    color: #8a5b12;
    font-weight: 700;
    text-decoration: underline;
}

.faq-reponse img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 14px 0;
    border-radius: 10px;
    border: 1px solid #eadcc9;
}