/* ===================== STYLES POUR LE CONTENEUR D'ONGLET ================= */
.tab-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--background-light);
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.tab-text {
    flex: 1;
    padding: 20px;
    font-size: var(--font-size-large);
}

.tab-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* ===================== STYLES POUR LES LISTES DE FONCTIONNALITÉS ==================== */
.features-list {
    list-style-type: none; 
    padding: 0;
}

.features-list li {
    font-size: var(--font-size-large); 
    margin-bottom: 10px;
}