.loyoly-extra-content {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    justify-content: center;
    margin: 2rem auto;
    max-width: 900px;
    padding: 1rem;
    text-align: center;
}

h2 {
    font-size: 48px;
    font-weight: 800;
    margin-top: 0.5rem;
}

p {
    font-size: 14px;
    font-weight: 300;
}

.loyoly-rewards_table img.loyoly-rewards-image {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-top: 3rem;
    max-width: 885px;
    width: 100%;
}

img.loyoly-badge-info-image {
    max-width: 500px;
    width: 100%;
}

.loyoly-faq {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
}

.loyoly-faq-list {
    max-width: 800px;
    text-align: left;
    width: 100%;
}

.loyoly-faq-item {
    border-bottom: 1px solid #eee;
}

.loyoly-faq-toggle {
    align-items: center;
    background: none;
    border: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    padding: 0.9rem 0;
    text-align: left;
    width: 100%;
}

.loyoly-faq-question {
    font-weight: 600;
    line-height: 1.3;
}

.loyoly-faq-icon {
    border: solid black 1px;
    border-radius: 50%;
    display: inline-block;
    font-size: 1.4rem;
    height: 1.4rem;
    line-height: 1;
    padding: 2px 7px;
    position: relative;
    transition: transform 200ms ease;
    width: 1.4rem;
}

.loyoly-faq-icon::before {
    background-color: black;
    content: '';
    height: 2px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
}

.loyoly-faq-icon::after {
    background-color: black;
    content: '';
    height: 60%;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 200ms ease;
    width: 2px;
}

.loyoly-faq-toggle[aria-expanded="true"] .loyoly-faq-icon::after {
    opacity: 0;
}

.loyoly-faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease;
}

.loyoly-faq-panel .loyoly-faq-answer {
    color: #757575;
    line-height: 1.55;
    padding: 0 0 1rem 0;
}

/* Mobile First */
.loyoly-faq h2,
.loyoly-rewards_table h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin: 0 auto;
    margin-bottom: 1rem;
    max-width: 750px;
}

.loyoly-rewards_table p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 650px;
}

/* Tablette (≥768px) */
@media (min-width: 768px) {
    .loyoly-faq h2,
    .loyoly-rewards_table h2 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .loyoly-rewards_table p {
        font-size: 1rem;
    }
}

/* Desktop (≥1024px) */
@media (min-width: 1024px) {
    .loyoly-faq h2,
    .loyoly-rewards_table h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .loyoly-rewards_table p {
        font-size: 1.05rem;
    }
}

/* Large Desktop (≥1440px) */
@media (min-width: 1440px) {
    .loyoly-faq h2,
    .loyoly-rewards_table h2 {
        font-size: 2.25rem;
        margin-bottom: 1.75rem;
    }

    .loyoly-rewards_table p {
        font-size: 1.1rem;
    }
}